結果

問題 No.286 Modulo Discount Store
ユーザー efunyoefunyo
提出日時 2020-03-27 13:32:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,082 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2024-06-10 16:12:41
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,512 KB
testcase_01 AC 57 ms
65,428 KB
testcase_02 AC 80 ms
76,392 KB
testcase_03 AC 45 ms
60,204 KB
testcase_04 AC 50 ms
62,708 KB
testcase_05 AC 42 ms
55,260 KB
testcase_06 AC 95 ms
76,376 KB
testcase_07 AC 43 ms
55,540 KB
testcase_08 AC 42 ms
54,676 KB
testcase_09 AC 42 ms
54,368 KB
testcase_10 AC 72 ms
76,356 KB
testcase_11 AC 46 ms
60,600 KB
testcase_12 AC 44 ms
60,668 KB
testcase_13 AC 82 ms
76,280 KB
testcase_14 AC 41 ms
54,860 KB
testcase_15 AC 41 ms
55,356 KB
testcase_16 AC 55 ms
65,848 KB
testcase_17 AC 130 ms
76,652 KB
testcase_18 AC 72 ms
76,400 KB
testcase_19 AC 41 ms
54,556 KB
testcase_20 AC 62 ms
69,860 KB
testcase_21 AC 43 ms
54,428 KB
testcase_22 AC 43 ms
55,644 KB
testcase_23 AC 89 ms
76,260 KB
testcase_24 AC 43 ms
54,444 KB
testcase_25 AC 68 ms
73,084 KB
testcase_26 AC 43 ms
54,588 KB
testcase_27 AC 73 ms
73,984 KB
testcase_28 AC 100 ms
76,292 KB
testcase_29 AC 43 ms
55,292 KB
testcase_30 AC 42 ms
55,620 KB
testcase_31 AC 59 ms
68,180 KB
testcase_32 AC 61 ms
70,776 KB
testcase_33 AC 43 ms
55,564 KB
testcase_34 AC 41 ms
55,780 KB
testcase_35 AC 61 ms
66,628 KB
testcase_36 AC 46 ms
54,612 KB
testcase_37 AC 72 ms
72,816 KB
testcase_38 AC 41 ms
54,796 KB
testcase_39 AC 97 ms
76,596 KB
testcase_40 AC 42 ms
56,240 KB
testcase_41 AC 42 ms
54,980 KB
testcase_42 AC 43 ms
55,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#https://yukicoder.me/problems/528
def main():
    import sys
    input = sys.stdin.readline
    sys.setrecursionlimit(10**7)
    from collections import Counter, deque
    #from collections import defaultdict
    from itertools import combinations, permutations, accumulate
    #from itertools import product
    from bisect import bisect_left,bisect_right
    import heapq
    from math import floor, ceil
    #from operator import itemgetter

    inf = 10**17
    #mod = 10**9 + 7

    N = int(input())
    M = [int(input()) for _ in range(N)]

    dp = [inf]*(1<<N)
    dp[-1] = 0

    def dfs(s):
        if dp[s]!=inf:
            return dp[s]
        
        for i in range(N):
            if s&(1<<i):
                continue
            #品物iを買うことでかかる金額
            total = 0
            for j in range(N):
                if s&(1<<j):
                    total += M[j]
            cost = max(M[i] - total%1000, 0)
            dp[s] = min(dp[s], dfs(s|(1<<i)) + cost)
        return dp[s]

    print(dfs(0))

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