結果
問題 | No.291 黒い文字列 |
ユーザー | mayoko_ |
提出日時 | 2015-10-16 23:05:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,475 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 89,328 KB |
実行使用メモリ | 79,360 KB |
最終ジャッジ日時 | 2024-07-21 20:17:13 |
合計ジャッジ時間 | 6,411 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
79,360 KB |
testcase_01 | AC | 24 ms
79,232 KB |
testcase_02 | AC | 28 ms
79,268 KB |
testcase_03 | AC | 26 ms
79,284 KB |
testcase_04 | AC | 24 ms
79,312 KB |
testcase_05 | AC | 26 ms
79,272 KB |
testcase_06 | AC | 28 ms
79,232 KB |
testcase_07 | AC | 25 ms
79,356 KB |
testcase_08 | AC | 26 ms
79,304 KB |
testcase_09 | AC | 23 ms
79,352 KB |
testcase_10 | AC | 39 ms
79,332 KB |
testcase_11 | AC | 34 ms
79,232 KB |
testcase_12 | AC | 33 ms
79,308 KB |
testcase_13 | AC | 25 ms
79,296 KB |
testcase_14 | AC | 29 ms
79,348 KB |
testcase_15 | AC | 27 ms
79,252 KB |
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 | RE | - |
testcase_29 | RE | - |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> #include<complex> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; int dp[100][21][21][21][21]; void chmax(int& x, int y) { x = max(x, y); } int main() { cin.tie(0); ios::sync_with_stdio(false); string s; cin >> s; int n = s.size(); memset(dp, -1, sizeof(dp)); dp[0][0][0][0][0] = 0; for (int i = 0; i < n; i++) for (int k = 0; k <= 20; k++) for (int u = 0; u <= 20; u++) for (int r = 0; r <= 20; r++) for (int o = 0; o <= 20; o++) { chmax(dp[i+1][k][u][r][o], dp[i][k][u][r][o]); if (dp[i][k][u][r][o] == -1) continue; switch (s[i]) { case 'K': chmax(dp[i+1][min(k+1, 20)][u][r][o], dp[i][k][u][r][o]); break; case 'U': if (k > 0) chmax(dp[i+1][k-1][min(u+1, 20)][r][o], dp[i][k][u][r][o]); break; case 'R': if (u > 0) chmax(dp[i+1][k][u-1][min(r+1, 20)][o], dp[i][k][u][r][o]); break; case 'O': if (r > 0) chmax(dp[i+1][k][u][r-1][min(o+1, 20)], dp[i][k][u][r][o]); break; case 'I': if (o > 0) chmax(dp[i+1][k][u][r][o-1], dp[i][k][u][r][o]+1); break; case '?': chmax(dp[i+1][min(k+1, 20)][u][r][o], dp[i][k][u][r][o]); if (k > 0) chmax(dp[i+1][k-1][min(u+1, 20)][r][o], dp[i][k][u][r][o]); if (u > 0) chmax(dp[i+1][k][u-1][min(r+1, 20)][o], dp[i][k][u][r][o]); if (r > 0) chmax(dp[i+1][k][u][r-1][min(o+1, 20)], dp[i][k][u][r][o]); if (o > 0) chmax(dp[i+1][k][u][r][o-1], dp[i][k][u][r][o]+1); break; default: break; } } int ans = 0; for (int k = 0; k <= 20; k++) for (int u = 0; u <= 20; u++) for (int r = 0; r <= 20; r++) for (int o = 0; o <= 20; o++) ans = max(ans, dp[n][k][u][r][o]); cout << ans << endl; return 0; }