結果

問題 No.992 最長増加部分列の数え上げ
ユーザー tentententen
提出日時 2020-08-24 19:05:08
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,534 bytes
コンパイル時間 3,338 ms
コンパイル使用メモリ 79,700 KB
実行使用メモリ 85,984 KB
最終ジャッジ日時 2024-11-06 10:36:11
合計ジャッジ時間 37,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
60,836 KB
testcase_01 AC 134 ms
54,044 KB
testcase_02 AC 132 ms
53,980 KB
testcase_03 AC 130 ms
54,140 KB
testcase_04 AC 846 ms
68,292 KB
testcase_05 AC 739 ms
68,020 KB
testcase_06 AC 959 ms
70,372 KB
testcase_07 AC 795 ms
68,128 KB
testcase_08 AC 594 ms
61,796 KB
testcase_09 AC 849 ms
68,128 KB
testcase_10 AC 941 ms
70,176 KB
testcase_11 AC 1,090 ms
70,668 KB
testcase_12 AC 470 ms
60,472 KB
testcase_13 AC 774 ms
68,136 KB
testcase_14 AC 787 ms
68,140 KB
testcase_15 AC 511 ms
61,624 KB
testcase_16 AC 1,397 ms
85,640 KB
testcase_17 AC 615 ms
60,944 KB
testcase_18 AC 798 ms
68,112 KB
testcase_19 AC 1,093 ms
70,548 KB
testcase_20 AC 1,513 ms
85,572 KB
testcase_21 AC 1,474 ms
85,704 KB
testcase_22 AC 1,423 ms
85,984 KB
testcase_23 AC 1,488 ms
85,700 KB
testcase_24 AC 1,523 ms
85,584 KB
testcase_25 AC 1,460 ms
85,832 KB
testcase_26 AC 1,660 ms
85,340 KB
testcase_27 AC 1,509 ms
85,672 KB
testcase_28 AC 1,491 ms
85,872 KB
testcase_29 AC 1,529 ms
85,648 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