結果

問題 No.992 最長増加部分列の数え上げ
ユーザー tentententen
提出日時 2020-08-24 19:38:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,691 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 79,436 KB
実行使用メモリ 81,276 KB
最終ジャッジ日時 2024-04-24 03:45:53
合計ジャッジ時間 22,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
42,420 KB
testcase_01 AC 52 ms
36,748 KB
testcase_02 AC 54 ms
37,304 KB
testcase_03 AC 54 ms
36,908 KB
testcase_04 AC 477 ms
57,880 KB
testcase_05 AC 384 ms
54,448 KB
testcase_06 AC 504 ms
59,952 KB
testcase_07 AC 432 ms
57,808 KB
testcase_08 AC 309 ms
50,936 KB
testcase_09 AC 475 ms
57,620 KB
testcase_10 AC 534 ms
58,492 KB
testcase_11 AC 608 ms
68,136 KB
testcase_12 AC 258 ms
47,380 KB
testcase_13 AC 434 ms
57,632 KB
testcase_14 AC 463 ms
57,880 KB
testcase_15 AC 252 ms
46,988 KB
testcase_16 AC 675 ms
71,596 KB
testcase_17 AC 303 ms
51,044 KB
testcase_18 AC 439 ms
57,448 KB
testcase_19 AC 526 ms
67,088 KB
testcase_20 AC 746 ms
72,200 KB
testcase_21 AC 693 ms
72,396 KB
testcase_22 AC 751 ms
72,164 KB
testcase_23 AC 750 ms
72,824 KB
testcase_24 AC 682 ms
72,772 KB
testcase_25 AC 789 ms
72,412 KB
testcase_26 AC 819 ms
81,276 KB
testcase_27 AC 760 ms
72,476 KB
testcase_28 AC 711 ms
72,716 KB
testcase_29 AC 798 ms
72,756 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.*;
import java.io.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        ArrayList<TreeMap<Integer, Integer>> list = new ArrayList<>();
        list.add(new TreeMap<>());
        list.get(0).put(Integer.MIN_VALUE, 1);
        String[] line = br.readLine().split(" ", n);
        for (int i = 0; i < n; i++) {
            int x = Integer.parseInt(line[i]);
            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