結果
問題 | No.1804 Intersection of LIS |
ユーザー | SSRS |
提出日時 | 2022-01-07 21:53:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,609 bytes |
コンパイル時間 | 1,626 ms |
コンパイル使用メモリ | 173,892 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-11-14 08:44:05 |
合計ジャッジ時間 | 10,666 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | RE | - |
testcase_35 | AC | 164 ms
15,964 KB |
testcase_36 | AC | 168 ms
16,000 KB |
testcase_37 | AC | 107 ms
11,392 KB |
testcase_38 | AC | 107 ms
11,392 KB |
testcase_39 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1000000; int main(){ int N; cin >> N; vector<int> P(N); for (int i = 0; i < N; i++){ cin >> P[i]; P[i]--; } vector<int> dpL(N, INF); vector<int> L(N, 0); for (int i = 0; i < N; i++){ L[i] = lower_bound(dpL.begin(), dpL.end(), P[i]) - dpL.begin(); dpL[L[i]] = P[i]; } vector<int> Q(N); for (int i = 0; i < N; i++){ Q[i] = N - 1 - P[i]; } vector<int> dpR(N, INF); vector<int> R(N, 0); vector<int> pr(N); for (int i = N - 1; i >= 0; i--){ R[i] = lower_bound(dpR.begin(), dpR.end(), Q[i]) - dpR.begin(); pr[i] = N - 1 - dpR[R[i]]; if (pr[i] < 0){ pr[i] = -INF; } dpR[R[i]] = P[N - 1 - i]; } int lis = lower_bound(dpL.begin(), dpL.end(), INF) - dpL.begin(); vector<int> A(lis + 1, INF), B(lis + 1, -INF); A[0] = -INF; B[lis] = INF; for (int i = N - 1; i >= 0; i--){ B[lis - 1 - R[i]] = P[i]; } int cnt = 0; for (int i = 0; i <= lis; i++){ if (A[i] < B[i]){ cnt++; } } vector<int> ans; for (int i = 0; i < N; i++){ if (A[lis - 1 - R[i]] < B[lis - 1 - R[i]]){ cnt--; } B[lis - 1 - R[i]] = pr[i]; if (A[lis - 1 - R[i]] < B[lis - 1 - R[i]]){ cnt++; } if (cnt == 0){ ans.push_back(P[i]); } if (A[L[i] + 1] < B[L[i] + 1]){ cnt--; } A[L[i] + 1] = P[i]; if (A[L[i] + 1] < B[L[i] + 1]){ cnt++; } } int x = ans.size(); cout << x << endl; for (int i = 0; i < x; i++){ cout << ans[i] + 1; if (i <x - 1){ cout << ' '; } } cout << endl; }