結果

問題 No.158 奇妙なお使い
ユーザー rpy3cpprpy3cpp
提出日時 2015-06-02 19:19:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,201 ms / 5,000 ms
コード長 1,423 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,932 KB
最終ジャッジ日時 2024-06-29 02:03:27
合計ジャッジ時間 4,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 2,201 ms
87,932 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 34 ms
10,880 KB
testcase_15 AC 43 ms
11,008 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 69 ms
12,032 KB
testcase_18 AC 319 ms
21,292 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 34 ms
10,752 KB
testcase_21 AC 75 ms
12,288 KB
testcase_22 AC 76 ms
14,080 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 35 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 40 ms
11,008 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 67 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# your code goes here
import sys
sys.setrecursionlimit(10**6)

def read_data():
    a3, a2, a1 = map(int, input().split())
    db = int(input())
    b3, b2, b1 = map(int, input().split())
    dc = int(input())
    c3, c2, c1 = map(int, input().split())
    return a3, a2, a1, b3, b2, b1, c3, c2, c1, db, dc


def solve(a3, a2, a1, b3, b2, b1, c3, c2, c1, db, dc):
    memo = dict()

    def dfs(a3, a2, a1, depth):
        nonlocal memo
        if (a3, a2, a1) in memo:
            return memo[a3, a2, a1]
        d3, d2, d1 = generate_payment_patterns(a3, a2, a1, db)
        if d3 or d2 or d1:
            t1 = dfs(a3-d3+b3, a2-d2+b2, a1-d1+b1, depth+1) + 1
        else:
            t1 = 0
        d3, d2, d1 = generate_payment_patterns(a3, a2, a1, dc)
        if d3 or d2 or d1:
            t2 = dfs(a3-d3+c3, a2-d2+c2, a1-d1+c1, depth+1) + 1
        else:
            t2 = 0
        t = max(t1, t2)
        memo[a3, a2, a1] = t
        return t

    return dfs(a3, a2, a1, 0)


def generate_payment_patterns(a3, a2, a1, d):
    for d3 in range(min(d//1000, a3), -1, -1):
        for d2 in range(min((d - d3*1000)//100,a2), -1, -1):
            d1 = d - d3*1000 - d2*100
            if d1 > a1:
                continue
            return d3, d2, d1
    return 0, 0, 0


if __name__ == '__main__':
    a3, a2, a1, b3, b2, b1, c3, c2, c1, db, dc = read_data()
    print(solve(a3, a2, a1, b3, b2, b1, c3, c2, c1, db, dc))
0