結果
問題 | No.161 制限ジャンケン |
ユーザー | odan3240 |
提出日時 | 2015-12-27 18:38:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,603 ms / 5,000 ms |
コード長 | 2,127 bytes |
コンパイル時間 | 836 ms |
コンパイル使用メモリ | 89,764 KB |
実行使用メモリ | 28,544 KB |
最終ジャッジ日時 | 2024-11-30 04:50:41 |
合計ジャッジ時間 | 6,355 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
11,136 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 1,455 ms
28,544 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 1,603 ms
28,544 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 57 ms
8,320 KB |
testcase_11 | AC | 50 ms
9,856 KB |
testcase_12 | AC | 23 ms
7,296 KB |
testcase_13 | AC | 918 ms
23,808 KB |
testcase_14 | AC | 106 ms
11,136 KB |
testcase_15 | AC | 311 ms
18,048 KB |
testcase_16 | AC | 61 ms
12,672 KB |
testcase_17 | AC | 49 ms
14,208 KB |
testcase_18 | AC | 35 ms
7,808 KB |
ソースコード
#include <algorithm> #include <functional> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <string> #include <sstream> #include <iostream> #include <iomanip> #include <vector> #include <list> #include <stack> #include <queue> #include <map> #include <set> #include <bitset> #include <climits> #define all(c) (c).begin(), (c).end() #define rep(i,n) for(int i=0;i<(n);i++) #define pb(e) push_back(e) #define mp(a, b) make_pair(a, b) #define fr first #define sc second const int INF=100000000; int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; using namespace std; typedef long long ll; int calc(char c1,char c2) { if(c1==c2) return 1; if(c1=='G'&&c2=='P') return 3; if(c1=='P'&&c2=='C') return 3; if(c1=='C'&&c2=='G') return 3; return 0; } template<class T> bool chmax(T &a, const T &b) { if(a<b) { a=b; return true; } return false; } int G,C,P; string S; /* int dfs(int idx,int g,int c,int p) { if(idx==S.size()) return 0; int ret = 0; if(dp[idx][g][c][p]!=-1) return dp[idx][g][c][p]; if(g!=0) ret = max(dfs(idx+1,g-1,c,p)+calc(S[idx],'G'), ret); if(c!=0) ret = max(dfs(idx+1,g,c-1,p)+calc(S[idx],'C'), ret); if(p!=0) ret = max(dfs(idx+1,g,c,p-1)+calc(S[idx],'P'), ret); return dp[idx][g][c][p]=ret; } */ int dp[2][301][301][301]; int main() { cin>>G>>C>>P; cin>>S; rep(i,S.size()) { rep(x,G+1) rep(y,C+1) rep(z,P+1) { int g=x; int c=y; int p=z; chmax(dp[(i+1)&1][g+1][c][p],dp[(i&1)][g][c][p]+calc(S[i],'G')); chmax(dp[(i+1)&1][g][c+1][p],dp[(i&1)][g][c][p]+calc(S[i],'C')); chmax(dp[(i+1)&1][g][c][p+1],dp[(i&1)][g][c][p]+calc(S[i],'P')); //if(g!=0) chmax(dp[(i&1)][g][c][p],dp[(i+1)&1][g-1][c][p]+calc(S[i],'G')); //if(c!=0) chmax(dp[(i&1)][g][c][p],dp[(i+1)&1][g][c-1][p]+calc(S[i],'C')); //if(p!=0) chmax(dp[(i&1)][g][c][p],dp[(i+1)&1][g][c][p-1]+calc(S[i],'P')); } } cout<<dp[S.size()&1][G][C][P]<<endl; //cout<<dfs(0,G,C,P)<<endl; return 0; }