結果

問題 No.992 最長増加部分列の数え上げ
ユーザー htensaihtensai
提出日時 2020-05-01 10:40:30
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,326 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 79,484 KB
実行使用メモリ 136,200 KB
最終ジャッジ日時 2024-12-23 13:28:35
合計ジャッジ時間 75,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
46,572 KB
testcase_01 AC 120 ms
100,524 KB
testcase_02 AC 119 ms
46,836 KB
testcase_03 AC 107 ms
101,948 KB
testcase_04 AC 706 ms
63,332 KB
testcase_05 AC 674 ms
116,868 KB
testcase_06 AC 847 ms
65,152 KB
testcase_07 AC 710 ms
116,652 KB
testcase_08 AC 527 ms
56,828 KB
testcase_09 AC 734 ms
117,320 KB
testcase_10 AC 836 ms
64,248 KB
testcase_11 AC 993 ms
129,760 KB
testcase_12 AC 428 ms
55,788 KB
testcase_13 AC 705 ms
119,596 KB
testcase_14 AC 708 ms
61,516 KB
testcase_15 AC 420 ms
114,240 KB
testcase_16 AC 1,120 ms
79,440 KB
testcase_17 AC 549 ms
114,660 KB
testcase_18 AC 737 ms
61,384 KB
testcase_19 AC 1,010 ms
129,948 KB
testcase_20 AC 1,282 ms
80,976 KB
testcase_21 AC 1,350 ms
135,768 KB
testcase_22 AC 1,287 ms
80,616 KB
testcase_23 AC 1,340 ms
136,200 KB
testcase_24 AC 1,429 ms
80,368 KB
testcase_25 AC 1,233 ms
135,980 KB
testcase_26 AC 1,286 ms
80,860 KB
testcase_27 AC 1,254 ms
136,128 KB
testcase_28 AC 1,344 ms
80,844 KB
testcase_29 AC 1,336 ms
75,324 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<TreeMap<Integer, Integer>> dp = new ArrayList<>();
		dp.add(new TreeMap<>());
		dp.get(0).put(Integer.MIN_VALUE, 1);
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    int left = 0;
		    int right = dp.size();
		    while (right - left > 1) {
		        int m = (left + right) / 2;
		        boolean flag = true;
		        if (dp.get(m).firstKey() < x) {
		            left = m;
		        } else {
		            right = m;
		        }
		    }
		    int count = 0;
		    for (Map.Entry<Integer, Integer> entry : dp.get(left).entrySet()) {
		        if (entry.getKey() < x) {
		            count += entry.getValue();
		            count %= MOD;
		        } else {
		            break;
		        }
		    }
		    if (dp.size() <= left + 1) {
		        dp.add(new TreeMap<>());
		    }
		    if (dp.get(left + 1).containsKey(x)) {
		        dp.get(left + 1).put(x, (dp.get(left + 1).get(x) + count) % MOD);
		    } else {
		        dp.get(left + 1).put(x, count);
		    }
		}
		int total = 0;
		for (int x : dp.get(dp.size() - 1).values()) {
		    total += x;
		    total %= MOD;
		}
		System.out.println(total);
	}
}
0