結果
問題 | No.291 黒い文字列 |
ユーザー | beet |
提出日時 | 2018-12-14 18:59:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,168 bytes |
コンパイル時間 | 2,533 ms |
コンパイル使用メモリ | 220,684 KB |
実行使用メモリ | 196,896 KB |
最終ジャッジ日時 | 2024-09-25 05:12:23 |
合計ジャッジ時間 | 13,173 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,884 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 5 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 242 ms
31,232 KB |
testcase_17 | AC | 419 ms
43,392 KB |
testcase_18 | AC | 303 ms
36,864 KB |
testcase_19 | AC | 1,405 ms
108,160 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 60 ms
13,440 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE signed main(){ string s; cin>>s; int n=s.size(); using T = tuple<int, int, int, int>; vector<map<T, int> > dp(n+1); dp[0][T(0,0,0,0)]=0; for(int i=0;i<n;i++){ for(auto p:dp[i]){ T t=p.first; int res=p.second; int a,b,c,d; tie(a,b,c,d)=t; chmax(dp[i+1][T(a,b,c,d)],res); if(s[i]=='K'||s[i]=='?'){ chmax(dp[i+1][T(a+1,b,c,d)],res); } if(s[i]=='U'||s[i]=='?'){ if(a) chmax(dp[i+1][T(a-1,b+1,c,d)],res); } if(s[i]=='R'||s[i]=='?'){ if(b) chmax(dp[i+1][T(a,b-1,c+1,d)],res); } if(s[i]=='O'||s[i]=='?'){ if(c) chmax(dp[i+1][T(a,b,c-1,d+1)],res); } if(s[i]=='I'||s[i]=='?'){ if(d) chmax(dp[i+1][T(a,b,c,d-1)],res+1); } } } int ans=0; for(int i=0;i<=n;i++) for(auto p:dp[i]) chmax(ans,p.second); cout<<ans<<endl; return 0; }