結果

問題 No.27 板の準備
ユーザー dangodango
提出日時 2023-07-09 15:44:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 80,096 KB
最終ジャッジ日時 2024-07-23 12:48:46
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,236 KB
testcase_01 AC 62 ms
67,820 KB
testcase_02 AC 209 ms
80,028 KB
testcase_03 AC 85 ms
77,936 KB
testcase_04 AC 177 ms
79,532 KB
testcase_05 AC 162 ms
79,528 KB
testcase_06 AC 191 ms
79,248 KB
testcase_07 AC 208 ms
79,832 KB
testcase_08 AC 221 ms
79,516 KB
testcase_09 AC 209 ms
80,096 KB
testcase_10 AC 201 ms
79,416 KB
testcase_11 AC 179 ms
79,916 KB
testcase_12 AC 190 ms
79,356 KB
testcase_13 AC 174 ms
79,420 KB
testcase_14 AC 171 ms
79,944 KB
testcase_15 AC 198 ms
79,776 KB
testcase_16 AC 126 ms
79,116 KB
testcase_17 AC 221 ms
79,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List

def main():
    vi = list(map(int, input().split()))
    vi.sort()
    maxV = vi[-1]

    r = float('inf')
    for a in range(1, maxV + 1):
        for b in range(a, maxV + 1):
            for c in range(b, maxV + 1):
                d = calc(vi, [a, b, c])
                if d > 0:
                    r = min(r, d)

    print(r)

def calc(vi: List[int], ai: List[int]) -> int:
    dp = [-1] * (vi[-1] + 1)
    dp[0] = 0

    def updateDp(dp: List[int], i: int, a: int) -> int:
        if i >= a and dp[i - a] >= 0:
            return dp[i - a] + 1
        else:
            return -1

    for i in range(1, len(dp)):
        a = [updateDp(dp, i, a) for a in ai]
        a = list(filter(lambda x: x >= 0, a))
        if len(a) > 0:
            dp[i] = min(a)

    ci = [dp[v] for v in vi]
    if all([a >= 0 for a in ci]):
        return sum(ci)
    else:
        return -1

if __name__ == '__main__':
    main()
0