結果
問題 | No.158 奇妙なお使い |
ユーザー | knewknowl |
提出日時 | 2015-02-28 16:44:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,313 bytes |
コンパイル時間 | 488 ms |
コンパイル使用メモリ | 58,356 KB |
実行使用メモリ | 52,736 KB |
最終ジャッジ日時 | 2024-06-24 00:27:31 |
合計ジャッジ時間 | 7,228 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 15 ms
46,720 KB |
testcase_01 | AC | 70 ms
46,720 KB |
testcase_02 | AC | 16 ms
46,848 KB |
testcase_03 | AC | 15 ms
46,720 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <iostream> #include <cstring> #include <algorithm> using namespace std; int memo[11][101][10001]; int a[3],b[3],c[3]; int bd,cd; struct mon{ int s[3]; }; mon pay(int d){ mon ret;for(int i=0;i<3;++i) ret.s[i]=a[i]; int k = min(ret.s[0],d/1000); ret.s[0]-=k; d-=k*1000; k = min(ret.s[1],d/100); ret.s[1]-=k; d-=k*100; ret.s[2]-=d; return ret; } int dfs(){ // for(int i=0;i<3;++i) cout << a[i] << " "; // cout << endl; if(memo[a[0]][a[1]][a[2]]!=-1) return memo[a[0]][a[1]][a[2]]; mon payb=pay(bd), payc=pay(cd); int ret = 0; mon tmp;for(int i=0;i<3;++i) tmp.s[i]=a[i]; if(payb.s[0]>=0 && payb.s[1]>=0 && payb.s[2]>=0){ for(int i=0;i<3;++i) a[i]=payb.s[i]+b[i]; ret = max(ret,1+dfs()); for(int i=0;i<3;++i) a[i]=tmp.s[i]; } if(payc.s[0]>=0 && payc.s[1]>=0 && payc.s[2]>=0){ for(int i=0;i<3;++i) a[i]=payc.s[i]+c[i]; ret = max(ret,1+dfs()); for(int i=0;i<3;++i) a[i]=tmp.s[i]; } return ret; } void output(mon m){ for(int i=0;i<3;++i) cout << m.s[i] << " "; cout << endl; } int main(){ memset(memo,-1,sizeof(memo)); for(int i=0;i<3;++i) cin >> a[i]; cin >> bd; for(int i=0;i<3;++i) cin >> b[i]; cin >> cd; for(int i=0;i<3;++i) cin >> c[i]; // output(pay(bd)); // output(pay(cd)); cout << dfs() << endl; return 0; }