結果

問題 No.992 最長増加部分列の数え上げ
ユーザー tentententen
提出日時 2020-08-24 19:38:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,691 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 80,064 KB
実行使用メモリ 90,964 KB
最終ジャッジ日時 2024-11-06 10:37:32
合計ジャッジ時間 22,130 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
57,184 KB
testcase_01 AC 55 ms
49,996 KB
testcase_02 AC 55 ms
50,200 KB
testcase_03 AC 55 ms
50,236 KB
testcase_04 AC 480 ms
67,284 KB
testcase_05 AC 387 ms
65,452 KB
testcase_06 AC 505 ms
68,556 KB
testcase_07 AC 440 ms
67,500 KB
testcase_08 AC 298 ms
62,268 KB
testcase_09 AC 454 ms
67,172 KB
testcase_10 AC 477 ms
67,888 KB
testcase_11 AC 624 ms
77,660 KB
testcase_12 AC 251 ms
57,552 KB
testcase_13 AC 427 ms
67,004 KB
testcase_14 AC 444 ms
67,208 KB
testcase_15 AC 251 ms
56,436 KB
testcase_16 AC 715 ms
82,648 KB
testcase_17 AC 295 ms
62,072 KB
testcase_18 AC 443 ms
66,908 KB
testcase_19 AC 618 ms
76,524 KB
testcase_20 AC 699 ms
82,664 KB
testcase_21 AC 701 ms
84,888 KB
testcase_22 AC 713 ms
82,712 KB
testcase_23 AC 737 ms
84,728 KB
testcase_24 AC 740 ms
83,460 KB
testcase_25 AC 727 ms
82,764 KB
testcase_26 AC 992 ms
90,964 KB
testcase_27 AC 721 ms
82,760 KB
testcase_28 AC 717 ms
82,816 KB
testcase_29 AC 793 ms
82,928 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