結果
問題 | No.1827 最長部分スーパーリッチ門松列列 |
ユーザー | 👑 Nachia |
提出日時 | 2022-01-28 21:26:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 707 ms |
コンパイル使用メモリ | 80,012 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-06-09 14:14:46 |
合計ジャッジ時間 | 3,176 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 52 ms
7,040 KB |
testcase_08 | AC | 53 ms
7,168 KB |
testcase_09 | AC | 52 ms
7,168 KB |
testcase_10 | AC | 53 ms
7,040 KB |
testcase_11 | AC | 50 ms
7,040 KB |
testcase_12 | AC | 51 ms
7,040 KB |
testcase_13 | AC | 50 ms
7,168 KB |
testcase_14 | WA | - |
testcase_15 | AC | 51 ms
7,040 KB |
testcase_16 | AC | 51 ms
7,040 KB |
testcase_17 | AC | 55 ms
7,040 KB |
testcase_18 | AC | 57 ms
7,168 KB |
testcase_19 | AC | 53 ms
7,168 KB |
testcase_20 | AC | 51 ms
7,168 KB |
testcase_21 | AC | 50 ms
7,168 KB |
testcase_22 | WA | - |
testcase_23 | AC | 52 ms
7,168 KB |
testcase_24 | AC | 53 ms
7,040 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <set> using namespace std; using i64 = long long; using u64 = unsigned long long; using i32 = int; using u32 = unsigned int; #define rep(i,n) for(int i=0; i<(n); i++) void testcase(){ int N; cin >> N; vector<int> iP(N); rep(i,N){ int p; cin >> p; p--; iP[p] = i; } vector<int> flag(N+2, 0); int nowans = 0; int ans = 0; rep(i,N){ int p = iP[i]; if(flag[p] != flag[p+1]) nowans--; if(flag[p+2] != flag[p+1]) nowans--; flag[p+1] ^= 1; if(flag[p] != flag[p+1]) nowans++; if(flag[p+2] != flag[p+1]) nowans++; int newans2 = nowans; if(flag[N] == 1) newans2--; ans = max(ans, newans2); } cout << ans << "\n"; } int main() { int T; cin >> T; while(T--) testcase(); return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;