結果

問題 No.992 最長増加部分列の数え上げ
ユーザー tentententen
提出日時 2020-08-24 19:05:08
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,534 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 80,292 KB
実行使用メモリ 75,988 KB
最終ジャッジ日時 2024-04-24 03:44:32
合計ジャッジ時間 40,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,604 KB
testcase_01 AC 136 ms
41,352 KB
testcase_02 AC 122 ms
39,948 KB
testcase_03 AC 119 ms
40,152 KB
testcase_04 AC 900 ms
56,956 KB
testcase_05 AC 778 ms
56,196 KB
testcase_06 AC 1,038 ms
58,660 KB
testcase_07 AC 852 ms
56,424 KB
testcase_08 AC 632 ms
51,184 KB
testcase_09 AC 894 ms
56,496 KB
testcase_10 AC 1,044 ms
58,640 KB
testcase_11 AC 1,200 ms
61,300 KB
testcase_12 AC 540 ms
49,684 KB
testcase_13 AC 851 ms
56,476 KB
testcase_14 AC 879 ms
56,436 KB
testcase_15 AC 549 ms
49,816 KB
testcase_16 AC 1,501 ms
74,152 KB
testcase_17 AC 659 ms
51,588 KB
testcase_18 AC 866 ms
56,580 KB
testcase_19 AC 1,212 ms
61,028 KB
testcase_20 AC 1,673 ms
75,756 KB
testcase_21 AC 1,613 ms
75,424 KB
testcase_22 AC 1,585 ms
75,300 KB
testcase_23 AC 1,682 ms
75,988 KB
testcase_24 AC 1,657 ms
75,348 KB
testcase_25 AC 1,689 ms
75,240 KB
testcase_26 AC 1,751 ms
75,840 KB
testcase_27 AC 1,601 ms
75,320 KB
testcase_28 AC 1,590 ms
75,464 KB
testcase_29 AC 1,702 ms
75,064 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

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>> list = new ArrayList<>();
        list.add(new TreeMap<>());
        list.get(0).put(Integer.MIN_VALUE, 1);
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int left = 0;
            int right = list.size();
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (list.get(m).firstKey() >= x) {
                    right = m;
                } else {
                    left = m;
                }
            }
            if (left == list.size() - 1) {
                list.add(new TreeMap<>());
            }
            int count = 0;
            for (Map.Entry<Integer, Integer> entry : list.get(left).entrySet()) {
                if (entry.getKey() >= x) {
                    break;
                }
                count += entry.getValue();
                count %= MOD;
            }
            if (list.get(left + 1).containsKey(x)) {
                list.get(left + 1).put(x, (list.get(left + 1).get(x) + count) % MOD);
            } else {
                list.get(left + 1).put(x, count);
            }
        }
        int sum = 0;
        for (int x : list.get(list.size() - 1).values()) {
            sum += x;
            sum %= MOD;
        }
        System.out.println(sum);
    }
}
0