結果
問題 | No.158 奇妙なお使い |
ユーザー | tkzw_21 |
提出日時 | 2015-03-03 21:19:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,307 bytes |
コンパイル時間 | 1,628 ms |
コンパイル使用メモリ | 161,120 KB |
実行使用メモリ | 10,652 KB |
最終ジャッジ日時 | 2024-06-24 01:17:06 |
合計ジャッジ時間 | 7,968 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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 <bits/stdc++.h> using namespace std; typedef pair<int,int> P; typedef pair<int,pair<int,int>> PP; typedef long long ll; const double EPS = 1e-8; const int INF = 1e9; const int MOD = 1e9+7; int dy[] = {0,1,0,-1}; int dx[] = {1,0,-1,0}; int Db,Dc; vector<int> A,B,C; int dfs(int A1000,int A100,int A1){ int ret = 0; int db = Db; int a1000 = A1000,a100 = A100,a1 = A1; while(db >= 1000 && a1000 > 0){db -= 1000;a1000--;} while(db >= 100 && a100 > 0){db -= 100;a100--;} int t = min(a1,db); a1 -= t; db -= t; if(db == 0)ret = max(ret,dfs(a1000+B[0],a100+B[1],a1+B[2])); int dc = Dc; a1000 = A1000;a100 = A100;a1 = A1; while(dc >= 1000 && a1000 > 0){dc -= 1000;a1000--;} while(dc >= 100 && a100 > 0){dc -= 100;a100--;} t = min(a1,dc); a1 -= t; dc -= t; if(dc == 0)ret = max(ret,dfs(a1000+C[0],a100+C[1],a1+C[2])); return ret + 1; } int main(void) { A.resize(3);B.resize(3);C.resize(3); cin >> A[0] >> A[1] >> A[2]; cin >> Db; cin >> B[0] >> B[1] >> B[2]; cin >> Dc; cin >> C[0] >> C[1] >> C[2]; // vector<vector<vector<int>>>dp(A[0]+1,vector<vector<int>>(A[1]+1,vector<int>(A[2]+1))); // for(int i=A[0];i>0;i--){ // for(int j=A[1];j>0;j--){ // for(int k=A[2];k>0;k--){ // dp[i][j][k] // } // } // } cout << dfs(A[0],A[1],A[2]) << endl; return 0; }