結果

問題 No.992 最長増加部分列の数え上げ
ユーザー tentententen
提出日時 2023-06-08 17:03:34
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 2,619 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 95,688 KB
実行使用メモリ 115,232 KB
最終ジャッジ日時 2024-12-31 01:45:58
合計ジャッジ時間 66,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
56,968 KB
testcase_01 AC 51 ms
115,232 KB
testcase_02 AC 52 ms
59,040 KB
testcase_03 AC 51 ms
57,380 KB
testcase_04 AC 432 ms
73,808 KB
testcase_05 AC 360 ms
69,048 KB
testcase_06 AC 478 ms
74,620 KB
testcase_07 AC 414 ms
71,204 KB
testcase_08 AC 289 ms
67,672 KB
testcase_09 AC 417 ms
73,512 KB
testcase_10 AC 492 ms
75,604 KB
testcase_11 AC 527 ms
78,080 KB
testcase_12 AC 256 ms
65,164 KB
testcase_13 AC 409 ms
71,216 KB
testcase_14 AC 406 ms
73,592 KB
testcase_15 AC 246 ms
64,964 KB
testcase_16 AC 713 ms
81,132 KB
testcase_17 AC 294 ms
65,828 KB
testcase_18 AC 406 ms
72,716 KB
testcase_19 AC 568 ms
77,900 KB
testcase_20 AC 692 ms
81,000 KB
testcase_21 AC 710 ms
81,092 KB
testcase_22 AC 806 ms
82,668 KB
testcase_23 AC 737 ms
81,712 KB
testcase_24 AC 756 ms
82,320 KB
testcase_25 AC 682 ms
81,952 KB
testcase_26 AC 784 ms
81,868 KB
testcase_27 AC 708 ms
81,156 KB
testcase_28 AC 734 ms
78,112 KB
testcase_29 AC 748 ms
74,072 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.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<TreeMap<Integer, Integer>> lis = new ArrayList<>();
        lis.add(new TreeMap<>());
        lis.get(0).put(Integer.MIN_VALUE, 1);
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int left = 0;
            int right = lis.size();
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (lis.get(m).firstKey() < x) {
                    left = m;
                } else {
                    right = m;
                }
            }
            if (right >= lis.size()) {
                lis.add(new TreeMap<>());
            }
            int count = 0;
            for (int y : lis.get(left).keySet()) {
                if (x <= y) {
                    break;
                }
                count += lis.get(left).get(y);
                count %= MOD;
            }
            lis.get(right).put(x, (lis.get(right).getOrDefault(x, 0) + count) % MOD);
        }
        int ans = 0;
        for (int v : lis.get(lis.size() - 1).values()) {
            ans += v;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0