結果
問題 | No.2031 Colored Brackets |
ユーザー | dyktr_06 |
提出日時 | 2022-08-06 00:01:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 2,600 bytes |
コンパイル時間 | 3,956 ms |
コンパイル使用メモリ | 236,084 KB |
実行使用メモリ | 38,912 KB |
最終ジャッジ日時 | 2024-09-15 21:57:26 |
合計ジャッジ時間 | 5,868 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 18 ms
13,952 KB |
testcase_05 | AC | 8 ms
7,680 KB |
testcase_06 | AC | 12 ms
9,728 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 31 ms
21,632 KB |
testcase_09 | AC | 43 ms
27,648 KB |
testcase_10 | AC | 57 ms
34,816 KB |
testcase_11 | AC | 42 ms
26,880 KB |
testcase_12 | AC | 64 ms
37,760 KB |
testcase_13 | AC | 29 ms
19,712 KB |
testcase_14 | AC | 64 ms
38,912 KB |
testcase_15 | AC | 64 ms
38,784 KB |
testcase_16 | AC | 66 ms
38,784 KB |
testcase_17 | AC | 175 ms
38,912 KB |
testcase_18 | AC | 41 ms
38,528 KB |
testcase_19 | AC | 32 ms
31,744 KB |
testcase_20 | AC | 21 ms
20,992 KB |
testcase_21 | AC | 23 ms
22,016 KB |
testcase_22 | AC | 24 ms
23,936 KB |
testcase_23 | AC | 37 ms
36,352 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 3 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); ++i) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; --i) #define ALL(a) a.begin(), a.end() #define Sort(a) sort(a.begin(), a.end()) #define RSort(a) sort(a.rbegin(), a.rend()) #define out(a) cout << a << "\n" typedef long long int ll; typedef long double ld; typedef vector<int> vi; typedef vector<long long> vll; typedef vector<char> vc; typedef vector<string> vst; typedef vector<double> vd; typedef pair<long long, long long> P; const long long INF = 0x1fffffffffffffff; const long long MOD = 998244353; const double PI = acos(-1); template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<class T, class U> inline T vin(T& vec, U n) { vec.resize(n); for(int i = 0; i < (int) n; ++i) cin >> vec[i]; return vec; } template<class T> inline void vout(T vec, string s = "\n"){ for(auto x : vec) cout << x << s; } ll n; string s; void input(){ cin >> n >> s; } void solve(){ vector<vector<ll>> dp(n / 2 + 1, vector<ll>(n / 2 + 1)); vector<vector<ll>> tmp(n / 2 + 1, vector<ll>(n / 2 + 1)); ll l = 0, r = 0, currdiff = 0, prevdiff = 0; dp[0][0] = 1; vector<P> currP, prevP; rep(i, n){ if(s[i] == '('){ l++; }else{ r++; } currdiff = l - r; for(int j = 0; j <= n / 2; j++){ ll jj = j; if(s[i] == '('){ jj++; }else{ jj--; } if(jj < 0) continue; ll k1 = currdiff - jj, k2 = prevdiff - j; if(k1 < 0 || k2 < 0) continue; tmp[jj][k1] += dp[j][k2]; tmp[jj][k1] %= MOD; tmp[k1][jj] += dp[k2][j]; tmp[k1][jj] %= MOD; currP.push_back({jj, k1}); } for(auto x : prevP){ dp[x.first][x.second] = 0; dp[x.second][x.first] = 0; } for(auto x : currP){ dp[x.first][x.second] = tmp[x.first][x.second]; dp[x.second][x.first] = tmp[x.second][x.first]; } for(auto x : currP){ tmp[x.first][x.second] = 0; tmp[x.second][x.first] = 0; } prevP = currP; currP.clear(); prevdiff = currdiff; } out(dp[0][0]); } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); input(); solve(); }