結果
問題 | No.161 制限ジャンケン |
ユーザー | cureskol |
提出日時 | 2020-04-08 21:05:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 88 ms / 5,000 ms |
コード長 | 714 bytes |
コンパイル時間 | 1,435 ms |
コンパイル使用メモリ | 167,884 KB |
実行使用メモリ | 114,304 KB |
最終ジャッジ日時 | 2024-07-19 05:43:26 |
合計ジャッジ時間 | 3,782 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 83 ms
114,176 KB |
testcase_01 | AC | 77 ms
114,304 KB |
testcase_02 | AC | 77 ms
114,304 KB |
testcase_03 | AC | 79 ms
114,304 KB |
testcase_04 | AC | 80 ms
114,304 KB |
testcase_05 | AC | 81 ms
114,304 KB |
testcase_06 | AC | 88 ms
114,176 KB |
testcase_07 | AC | 78 ms
114,304 KB |
testcase_08 | AC | 86 ms
114,304 KB |
testcase_09 | AC | 81 ms
114,304 KB |
testcase_10 | AC | 77 ms
114,176 KB |
testcase_11 | AC | 77 ms
114,304 KB |
testcase_12 | AC | 78 ms
114,176 KB |
testcase_13 | AC | 88 ms
114,304 KB |
testcase_14 | AC | 79 ms
114,304 KB |
testcase_15 | AC | 80 ms
114,176 KB |
testcase_16 | AC | 79 ms
114,304 KB |
testcase_17 | AC | 80 ms
114,304 KB |
testcase_18 | AC | 78 ms
114,176 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int dp[305][305][305];//dp[i][j][k]:i+1手が終わった時にGのresがj,Cのresがk個 string s; int f(int idx,int hand){ int opo; if(s[idx]=='G')opo=1; if(s[idx]=='C')opo=2; if(s[idx]=='P')opo=3; if((opo-hand+3)%3==1)return 3; if(opo==hand)return 1; return 0; } signed main(){ int g,c,p;cin>>g>>c>>p; cin>>s; for(int i=0;i<305;i++)for(int j=0;j<305;j++)for(int k=0;k<305;k++)dp[i][j][k]=-1e9; dp[0][g][c]=0; for(int i=0;i<s.size();i++){ for(int j=0;j<=g;j++){ for(int k=0;k<=c;k++){ dp[i+1][j][k]=max({dp[i][j][k]+f(i,3),dp[i][j+1][k]+f(i,1),dp[i][j][k+1]+f(i,2)}); } } } cout<<dp[s.size()][0][0]<<endl; }