結果

問題 No.158 奇妙なお使い
ユーザー codershifthcodershifth
提出日時 2015-12-28 01:13:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 564 ms / 5,000 ms
コード長 1,337 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 159,428 KB
実行使用メモリ 91,272 KB
最終ジャッジ日時 2024-06-29 12:27:18
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
90,204 KB
testcase_01 AC 24 ms
90,168 KB
testcase_02 AC 22 ms
90,132 KB
testcase_03 AC 22 ms
90,192 KB
testcase_04 AC 564 ms
91,212 KB
testcase_05 AC 23 ms
89,976 KB
testcase_06 AC 22 ms
90,128 KB
testcase_07 AC 22 ms
90,116 KB
testcase_08 AC 21 ms
90,228 KB
testcase_09 AC 23 ms
90,088 KB
testcase_10 AC 21 ms
90,128 KB
testcase_11 AC 23 ms
90,112 KB
testcase_12 AC 21 ms
90,124 KB
testcase_13 AC 21 ms
89,992 KB
testcase_14 AC 25 ms
90,128 KB
testcase_15 AC 32 ms
90,084 KB
testcase_16 AC 29 ms
90,120 KB
testcase_17 AC 74 ms
90,284 KB
testcase_18 AC 30 ms
90,196 KB
testcase_19 AC 22 ms
90,172 KB
testcase_20 AC 25 ms
90,108 KB
testcase_21 AC 21 ms
90,556 KB
testcase_22 AC 23 ms
91,272 KB
testcase_23 AC 22 ms
90,120 KB
testcase_24 AC 22 ms
90,196 KB
testcase_25 AC 21 ms
90,164 KB
testcase_26 AC 24 ms
90,144 KB
testcase_27 AC 21 ms
90,112 KB
testcase_28 AC 46 ms
90,120 KB
testcase_29 AC 21 ms
90,204 KB
testcase_30 AC 50 ms
90,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

typedef long long ll;
typedef unsigned long long ull;

#define FOR(i,a,b) for(int (i)=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define RANGE(vec) (vec).begin(),(vec).end()

using namespace std;

array<int,3> A,B,C;
int Db,Dc;
ll dp[11][101][10001];

class StrangeErrand {
public:
    ll calc(int a, int b, int c) {
        if (dp[a][b][c] >= 0)
            return dp[a][b][c];
        ll maxCnt = 0;
        REP(i,a+1)
        REP(j,b+1)
        {
            int restDb = Db - i*1000 - j*100;
            int restDc = Dc - i*1000 - j*100;

            if (restDb >= 0 && restDb <= c)
                maxCnt = max(calc(a-i+B[0],b-j+B[1],c-restDb+B[2])+1, maxCnt);
            if (restDc >= 0 && restDc <= c)
                maxCnt = max(calc(a-i+C[0],b-j+C[1],c-restDc+C[2])+1, maxCnt);
        }
        return dp[a][b][c] = maxCnt;
    }
    void solve(void) {
        REP(i,3) cin>>A[i];
        cin>>Db;
        REP(i,3) cin>>B[i];
        cin>>Dc;
        REP(i,3) cin>>C[i];

        REP(i,11)
        REP(j,101)
        REP(k,10001)
            dp[i][j][k] = -1;
        cout<<calc(A[0],A[1],A[2])<<endl;
    }
};

#if 1
int main(int argc, char *argv[])
{
        ios::sync_with_stdio(false);
        auto obj = new StrangeErrand();
        obj->solve();
        delete obj;
        return 0;
}
#endif
0