結果
問題 | No.1804 Intersection of LIS |
ユーザー | ygussany |
提出日時 | 2022-01-07 22:34:18 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 1,397 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 8,936 KB |
最終ジャッジ日時 | 2024-11-14 08:55:31 |
合計ジャッジ時間 | 3,462 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,708 KB |
testcase_01 | AC | 3 ms
7,792 KB |
testcase_02 | AC | 3 ms
7,928 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 | 3 ms
7,716 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 3 ms
7,640 KB |
testcase_32 | WA | - |
testcase_33 | AC | 4 ms
7,800 KB |
testcase_34 | WA | - |
testcase_35 | AC | 77 ms
8,896 KB |
testcase_36 | AC | 78 ms
8,804 KB |
testcase_37 | AC | 38 ms
8,696 KB |
testcase_38 | AC | 38 ms
8,816 KB |
testcase_39 | AC | 4 ms
7,680 KB |
ソースコード
#include <stdio.h> int main() { int i, N, P[300001]; scanf("%d", &N); for (i = 1; i <= N; i++) scanf("%d", &(P[i])); int k = 0, l, r, m, dp[300001] = {}, lis[300001] = {}, prev[300001] = {}, num[300001] = {}; for (i = 1; i <= N; i++) { l = 0; r = k; while (l < r) { m = (l + r + 1) / 2; if (P[dp[m]] > P[i]) r = m - 1; else l = m; } dp[l+1] = i; num[l+1]++; lis[i] = l + 1; prev[i] = dp[l]; if (l == k) k++; } int ans = 0, flag[300001] = {}, pos[300001] = {}; for (i = dp[k]; i > 0; i = prev[i]) flag[i] = 1; for (i = N; i >= 1; i--) { if (flag[i] != 0) { if (num[lis[i]] == 1) ans++; else flag[i] = 0; } num[lis[i]]--; } printf("%d\n", ans); for (i = 1; i <= N; i++) if (flag[i] != 0) printf("%d ", P[i]); printf("\n"); fflush(stdout); return 0; }