結果
問題 | No.1961 Clear Brackets |
ユーザー | 👑 tute7627 |
提出日時 | 2022-05-15 17:58:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,762 bytes |
コンパイル時間 | 2,405 ms |
コンパイル使用メモリ | 215,388 KB |
実行使用メモリ | 24,224 KB |
最終ジャッジ日時 | 2024-09-13 05:09:44 |
合計ジャッジ時間 | 6,944 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 115 ms
20,852 KB |
testcase_16 | AC | 85 ms
20,700 KB |
testcase_17 | WA | - |
testcase_18 | AC | 106 ms
20,716 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 78 ms
20,764 KB |
testcase_22 | AC | 84 ms
20,620 KB |
testcase_23 | AC | 111 ms
20,712 KB |
testcase_24 | AC | 51 ms
20,732 KB |
testcase_25 | AC | 125 ms
24,224 KB |
testcase_26 | AC | 103 ms
21,140 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 136 ms
21,112 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 123 ms
20,924 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 106 ms
20,804 KB |
testcase_40 | WA | - |
testcase_41 | AC | 94 ms
20,844 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/segtree> using namespace std; int op_min(int a, int b){ return min(a, b); } int e_min(){ return (int)(1e9); } int op_max(int a, int b){ return max(a, b); } int e_max(){ return (int)(-1e9); } int main(){ int N; cin >> N; string S; cin >> S; S += '?'; N++; vector<int>max_r(N + 1); { vector<int>B(N + 1); for(int i = 0; i < N; i++){ B[i + 1] = B[i] + (S[i] == ')' ? -1 : 1); } atcoder::segtree<int,op_min,e_min>seg(B); for(int i = 0; i < N; i++){ auto judge = [&](int x){ return x >= B[i]; }; max_r[i] = seg.max_right<decltype(judge)>(i, judge); } } vector<int>min_l(N + 1); { vector<int>B(N + 1); for(int i = 0; i < N; i++){ B[i + 1] = B[i] + (S[i] == '(' ? 1 : -1); } atcoder::segtree<int,op_min,e_min>seg(B); for(int i = 0; i < N; i++){ auto judge = [&](int x){ return x >= B[i]; }; min_l[i] = seg.min_left<decltype(judge)>(i, judge); } } using Seg = atcoder::segtree<int,op_max,e_max>; vector<Seg> dp1(2, Seg(N + 1)); vector<Seg> dp2(2, Seg(N + 1)); dp1[0].set(0,0); vector<vector<int>>del(N + 2); for(int i = 0; i < N; i++){ del[max_r[i]].push_back(i); } for(int r = 0; r < N; r++){ for(auto l: del[r]){ for(int j = 0; j < 2; j++){ dp1[j].set(l, e_max()); dp2[j].set(l, e_max()); } } int mx1 = max(dp1[r % 2].get(r), dp1[r % 2].prod(min(r, min_l[r] + 1), r) + 1); int mx2 = max(dp2[r % 2].get(r), dp2[r % 2].prod(min_l[r], r) + 1); if(S[r] != '(')dp1[(r + 1) % 2].set(r + 1, mx1); if(S[r] != ')')dp2[(r + 1) % 2].set(r + 1, max(mx1, mx2)); } cout << dp2[N % 2].get(N) << endl; return 0; }