結果

問題 No.286 Modulo Discount Store
ユーザー qibqib
提出日時 2022-10-29 13:10:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-07-06 12:27:44
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 54 ms
66,304 KB
testcase_02 AC 74 ms
77,440 KB
testcase_03 AC 38 ms
59,136 KB
testcase_04 AC 41 ms
61,696 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 96 ms
78,860 KB
testcase_07 AC 33 ms
51,968 KB
testcase_08 AC 31 ms
51,968 KB
testcase_09 AC 32 ms
51,968 KB
testcase_10 AC 74 ms
77,168 KB
testcase_11 AC 38 ms
59,392 KB
testcase_12 AC 37 ms
59,264 KB
testcase_13 AC 81 ms
77,696 KB
testcase_14 AC 33 ms
52,224 KB
testcase_15 AC 32 ms
51,840 KB
testcase_16 AC 53 ms
66,304 KB
testcase_17 AC 154 ms
82,176 KB
testcase_18 AC 74 ms
76,492 KB
testcase_19 AC 33 ms
51,584 KB
testcase_20 AC 60 ms
71,296 KB
testcase_21 AC 33 ms
52,352 KB
testcase_22 AC 32 ms
52,096 KB
testcase_23 AC 81 ms
77,060 KB
testcase_24 AC 34 ms
52,352 KB
testcase_25 AC 64 ms
72,576 KB
testcase_26 AC 32 ms
51,584 KB
testcase_27 AC 61 ms
72,064 KB
testcase_28 AC 98 ms
78,764 KB
testcase_29 AC 33 ms
52,608 KB
testcase_30 AC 32 ms
52,224 KB
testcase_31 AC 57 ms
68,992 KB
testcase_32 AC 55 ms
67,584 KB
testcase_33 AC 33 ms
52,224 KB
testcase_34 AC 33 ms
52,352 KB
testcase_35 AC 50 ms
66,304 KB
testcase_36 AC 32 ms
51,840 KB
testcase_37 AC 60 ms
71,936 KB
testcase_38 AC 33 ms
52,096 KB
testcase_39 AC 94 ms
79,316 KB
testcase_40 AC 34 ms
51,968 KB
testcase_41 AC 33 ms
51,584 KB
testcase_42 AC 32 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

n = int(input())
m = [int(input()) for _ in range(n)]

dp = [[INF for _ in range(n)] for _ in range(1 << n)]
for src in range(n):
  dp[0][src] = 0

for mask in range(1 << n):
  dpm = dp[mask]

  cnt = 0
  for v in range(n):
    if (mask >> v) & 1 != 0:
      cnt = (cnt + m[v]) % 1000

  for cur in range(n):
    if dpm[cur] == INF:
      continue

    for nxt in range(n):
      if (mask >> nxt) & 1 != 0:
        continue

      dp[mask | (1 << nxt)][nxt] = min(dp[mask | (1 << nxt)][nxt], dpm[cur] + max(0, m[nxt] - cnt))

print(min(dp[-1]))
0