結果

問題 No.50 おもちゃ箱
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-07-18 20:56:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,699 ms / 5,000 ms
コード長 744 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,624 KB
最終ジャッジ日時 2024-06-25 21:47:07
合計ジャッジ時間 17,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,180 KB
testcase_01 AC 860 ms
75,120 KB
testcase_02 AC 44 ms
60,116 KB
testcase_03 AC 36 ms
52,560 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 473 ms
75,240 KB
testcase_06 AC 166 ms
75,264 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 43 ms
57,728 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 49 ms
59,904 KB
testcase_15 AC 40 ms
52,736 KB
testcase_16 AC 47 ms
60,032 KB
testcase_17 AC 868 ms
75,080 KB
testcase_18 AC 103 ms
75,244 KB
testcase_19 AC 792 ms
75,320 KB
testcase_20 AC 48 ms
60,544 KB
testcase_21 AC 113 ms
75,088 KB
testcase_22 AC 1,125 ms
75,624 KB
testcase_23 AC 80 ms
75,240 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 37 ms
52,352 KB
testcase_26 AC 50 ms
60,928 KB
testcase_27 AC 106 ms
75,004 KB
testcase_28 AC 771 ms
75,180 KB
testcase_29 AC 776 ms
75,140 KB
testcase_30 AC 574 ms
75,264 KB
testcase_31 AC 38 ms
52,736 KB
testcase_32 AC 750 ms
75,140 KB
testcase_33 AC 683 ms
75,152 KB
testcase_34 AC 658 ms
75,260 KB
testcase_35 AC 772 ms
75,204 KB
testcase_36 AC 1,699 ms
75,300 KB
testcase_37 AC 664 ms
75,264 KB
testcase_38 AC 749 ms
75,252 KB
testcase_39 AC 715 ms
75,364 KB
testcase_40 AC 1,224 ms
75,392 KB
testcase_41 AC 844 ms
75,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import itertools


IMPOSSIBLE = -1


def main():
    num_items = int(input())
    items = map(int, input().split())
    num_boxes = int(input())
    boxes_base = sorted(map(int, input().split()), reverse=True)
    ans = num_boxes + 1
    for items_perm in itertools.permutations(items):
        boxes = boxes_base[:]
        item_idx = box_idx = 0
        while item_idx < num_items and box_idx < num_boxes:
            if boxes[box_idx] >= items_perm[item_idx]:
                boxes[box_idx] -= items_perm[item_idx]
                item_idx += 1
            else:
                box_idx += 1
        ans = min(ans, box_idx + 1)
    print(ans if ans <= num_boxes else IMPOSSIBLE)


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