結果

問題 No.27 板の準備
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-10 15:08:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 666 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 00:28:58
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
10,752 KB
testcase_01 AC 123 ms
10,752 KB
testcase_02 AC 123 ms
10,752 KB
testcase_03 AC 127 ms
10,752 KB
testcase_04 AC 126 ms
10,752 KB
testcase_05 AC 123 ms
10,752 KB
testcase_06 AC 126 ms
10,624 KB
testcase_07 AC 129 ms
10,624 KB
testcase_08 AC 125 ms
10,752 KB
testcase_09 AC 122 ms
10,752 KB
testcase_10 AC 128 ms
10,752 KB
testcase_11 AC 133 ms
10,752 KB
testcase_12 AC 134 ms
10,752 KB
testcase_13 AC 133 ms
10,752 KB
testcase_14 AC 135 ms
10,752 KB
testcase_15 AC 133 ms
10,752 KB
testcase_16 AC 134 ms
10,624 KB
testcase_17 AC 133 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import array
import itertools


INF = 10 ** 8
MAX_LEN = 30
NUM_BOARDS = 3


def compute_minimum(targets, boards):
    dp = array.array("L", (INF for _ in range(MAX_LEN + 1)))
    dp[0] = 0
    for board in boards:
        for i in range(board, MAX_LEN + 1):
            dp[i] = min(dp[i], dp[i - board] + 1)
    return sum(dp[target] for target in targets)


def solve(targets):
    gen = itertools.combinations(range(1, MAX_LEN + 1), 3)
    return min(compute_minimum(targets, boards) for boards in gen)


def main():
    targets = array.array("B", map(int, input().split()))
    print(solve(targets))


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