結果
問題 | No.291 黒い文字列 |
ユーザー | yukudo |
提出日時 | 2019-08-30 22:49:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,629 bytes |
コンパイル時間 | 1,497 ms |
コンパイル使用メモリ | 161,136 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-01 19:38:11 |
合計ジャッジ時間 | 4,564 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 13 ms
6,944 KB |
testcase_04 | AC | 8 ms
6,944 KB |
testcase_05 | AC | 7 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 17 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 98 ms
6,944 KB |
testcase_26 | AC | 99 ms
6,940 KB |
testcase_27 | AC | 104 ms
6,944 KB |
testcase_28 | AC | 102 ms
6,948 KB |
testcase_29 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int nextInt()’: main.cpp:13:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | int nextInt() { int x; scanf("%d", &x); return x;} | ~~~~~^~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i,n) for(int i=0,_n=(int)(n);i<_n;++i) #define ALL(v) (v).begin(),(v).end() #define CLR(t,v) memset(t,(v),sizeof(t)) template<class T1,class T2>ostream& operator<<(ostream& os,const pair<T1,T2>&a){return os<<"("<<a.first<<","<<a.second<< ")";} template<class T>void pv(T a,T b){for(T i=a;i!=b;++i)cout<<(*i)<<" ";cout<<endl;} template<class T>void chmin(T&a,const T&b){if(a>b)a=b;} template<class T>void chmax(T&a,const T&b){if(a<b)a=b;} int nextInt() { int x; scanf("%d", &x); return x;} const int M = 21; int dp[2][M][M][M][M]; int main2() { CLR(dp, 0); string s; cin >> s; int N = s.size(); REP(i, N) { if (string("KUROI?").find(s[i]) == string::npos) continue; const int f = i & 1; const int nf = 1 - f; REP(a, M) REP(b, M) REP(c, M) REP(d, M) { const int cur = dp[f][a][b][c][d]; chmax(dp[nf][a][b][c][d], cur); if (s[i] == 'K' || s[i] == '?') chmax(dp[nf][min(20, a+1)][b][c][d], cur); if ((s[i] == 'U' || s[i] == '?') && a > 0) chmax(dp[nf][a-1][max(20, b+1)][c][d], cur); if ((s[i] == 'R' || s[i] == '?') && b > 0) chmax(dp[nf][a][b-1][max(20, c+1)][d], cur); if ((s[i] == 'O' || s[i] == '?') && c > 0) chmax(dp[nf][a][b][c-1][max(20, d+1)], cur); if ((s[i] == 'I' || s[i] == '?') && d > 0) chmax(dp[nf][a][b][c][d-1], cur + 1); } } int ans = 0; REP(a, M) REP(b, M) REP(c, M) REP(d, M) chmax(ans, dp[N&1][a][b][c][d]); cout << ans << endl; return 0; } int main() { #ifdef LOCAL for (;!cin.eof();cin>>ws) #endif main2(); return 0; }