結果
問題 | No.1804 Intersection of LIS |
ユーザー | ks2m |
提出日時 | 2022-01-07 23:02:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,526 bytes |
コンパイル時間 | 4,013 ms |
コンパイル使用メモリ | 78,632 KB |
実行使用メモリ | 102,568 KB |
最終ジャッジ日時 | 2024-11-14 09:07:19 |
合計ジャッジ時間 | 15,512 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,188 KB |
testcase_01 | AC | 55 ms
50,332 KB |
testcase_02 | AC | 54 ms
50,036 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 54 ms
50,316 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 55 ms
49,972 KB |
testcase_34 | WA | - |
testcase_35 | AC | 579 ms
102,568 KB |
testcase_36 | AC | 580 ms
102,336 KB |
testcase_37 | AC | 407 ms
90,760 KB |
testcase_38 | AC | 406 ms
90,540 KB |
testcase_39 | AC | 55 ms
50,244 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } br.close(); int[] dp = new int[n + 1]; List<List<Integer>> list = new ArrayList<>(n + 1); list.add(new ArrayList<>()); for (int i = 1; i <= n; i++) { dp[i] = Integer.MAX_VALUE; list.add(new ArrayList<>()); } for (int i = 0; i < n; i++) { int idx = Arrays.binarySearch(dp, a[i]); if (idx < 0) idx = ~idx; dp[idx] = a[i]; list.get(idx).add(i); } int lis = Arrays.binarySearch(dp, Integer.MAX_VALUE - 1); if (lis < 0) { lis = ~lis; lis--; } List<Integer> list2 = list.get(lis); int size = list2.size(); int x = list2.get(size - 1); int cnt = 0; StringBuilder sb = new StringBuilder(); for (int i = 1; i <= lis; i++) { List<Integer> wk = list.get(i); int num = 0; for (int j = wk.size() - 1; j >= 0; j--) { if (wk.get(j) <= x) { num = j + 1; break; } } if (num == 1) { sb.append(a[wk.get(0)]).append(' '); cnt++; } } if (cnt > 0) { sb.deleteCharAt(sb.length() - 1); } System.out.println(cnt); System.out.println(sb.toString()); } }