結果

問題 No.291 黒い文字列
ユーザー chocoruskchocorusk
提出日時 2019-01-12 11:59:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 2,055 bytes
コンパイル時間 1,816 ms
コンパイル使用メモリ 99,392 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-05-09 21:28:10
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
38,784 KB
testcase_01 AC 28 ms
39,040 KB
testcase_02 AC 27 ms
38,912 KB
testcase_03 AC 29 ms
38,912 KB
testcase_04 AC 27 ms
38,912 KB
testcase_05 AC 27 ms
38,912 KB
testcase_06 AC 28 ms
38,912 KB
testcase_07 AC 27 ms
39,040 KB
testcase_08 AC 27 ms
39,040 KB
testcase_09 AC 27 ms
39,040 KB
testcase_10 AC 28 ms
39,040 KB
testcase_11 AC 28 ms
38,912 KB
testcase_12 AC 27 ms
39,040 KB
testcase_13 AC 27 ms
39,040 KB
testcase_14 AC 27 ms
39,040 KB
testcase_15 AC 27 ms
38,912 KB
testcase_16 AC 51 ms
39,040 KB
testcase_17 AC 54 ms
38,912 KB
testcase_18 AC 52 ms
39,040 KB
testcase_19 AC 65 ms
38,784 KB
testcase_20 AC 71 ms
39,040 KB
testcase_21 AC 49 ms
39,040 KB
testcase_22 AC 75 ms
39,040 KB
testcase_23 AC 101 ms
38,912 KB
testcase_24 AC 61 ms
38,912 KB
testcase_25 AC 51 ms
39,040 KB
testcase_26 AC 50 ms
39,040 KB
testcase_27 AC 48 ms
38,912 KB
testcase_28 AC 49 ms
38,912 KB
testcase_29 AC 52 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int dp[2][101][51][34][26];
	string s; cin>>s;
	int n=s.size();
	for(int j=0; j<=n; j++){
		for(int k=0; j+2*k<=n; k++){
			for(int l=0; j+2*k+3*l<=n; l++){
				for(int m=0; j+2*k+3*l+4*m<=n; m++){
					dp[0][j][k][l][m]=dp[1][j][k][l][m]=-1;
				}
			}
		}
	}
	dp[0][0][0][0][0]=0;
	for(int i=0; i<n; i++){
		for(int j=0; j<=i; j++){
			for(int k=0; j+2*k<=i; k++){
				for(int l=0; j+2*k+3*l<=i; l++){
					for(int m=0; j+2*k+3*l+4*m<=i; m++){
						dp[(i&1)^1][j][k][l][m]=dp[i&1][j][k][l][m];
					}
				}
			}
		}
		for(int j=0; j<=i; j++){
			for(int k=0; 2*k+j<=i; k++){
				for(int l=0; j+2*k+3*l<=i; l++){
					for(int m=0; j+2*k+3*l+4*m<=i; m++){
						if(dp[i&1][j][k][l][m]<0) continue;
						if(s[i]=='K' || s[i]=='?'){
							dp[(i&1)^1][j+1][k][l][m]=max(dp[i&1][j][k][l][m], dp[(i&1)^1][j+1][k][l][m]);
						}
						if((s[i]=='U' || s[i]=='?') && j>0){
							dp[(i&1)^1][j-1][k+1][l][m]=max(dp[i&1][j][k][l][m], dp[(i&1)^1][j-1][k+1][l][m]);
						}
						if((s[i]=='R' || s[i]=='?') && k>0){
							dp[(i&1)^1][j][k-1][l+1][m]=max(dp[i&1][j][k][l][m], dp[(i&1)^1][j][k-1][l+1][m]);
						}
						if((s[i]=='O' || s[i]=='?') && l>0){
							dp[(i&1)^1][j][k][l-1][m+1]=max(dp[i&1][j][k][l][m], dp[(i&1)^1][j][k][l-1][m+1]);
						}
						if((s[i]=='I' || s[i]=='?') && m>0){
							dp[(i&1)^1][j][k][l][m-1]=max(dp[i&1][j][k][l][m]+1, dp[(i&1)^1][j][k][l][m-1]);
						}
					}
				}
			}
		}
	}
	int ans=0;
	for(int j=0; j<=n; j++){
		for(int k=0; j+2*k<=n; k++){
			for(int l=0; j+2*k+3*l<=n; l++){
				for(int m=0; j+2*k+3*l+4*m<=n; m++){
					ans=max(ans, dp[n&1][j][k][l][m]);
				}
			}
		}
	}
	cout<<ans<<endl;
	return 0;
}
0