結果

問題 No.733 分身並列コーディング
ユーザー tobusakanatobusakana
提出日時 2022-10-23 22:59:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 1,500 ms
コード長 956 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 94,764 KB
最終ジャッジ日時 2024-07-02 11:41:39
合計ジャッジ時間 5,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,152 KB
testcase_01 AC 32 ms
53,300 KB
testcase_02 AC 37 ms
52,388 KB
testcase_03 AC 125 ms
94,760 KB
testcase_04 AC 114 ms
92,492 KB
testcase_05 AC 124 ms
94,764 KB
testcase_06 AC 37 ms
53,428 KB
testcase_07 AC 131 ms
94,280 KB
testcase_08 AC 123 ms
94,584 KB
testcase_09 AC 83 ms
82,300 KB
testcase_10 AC 56 ms
67,860 KB
testcase_11 AC 55 ms
68,080 KB
testcase_12 AC 34 ms
53,020 KB
testcase_13 AC 32 ms
53,296 KB
testcase_14 AC 68 ms
73,348 KB
testcase_15 AC 52 ms
66,976 KB
testcase_16 AC 35 ms
52,820 KB
testcase_17 AC 33 ms
53,620 KB
testcase_18 AC 58 ms
68,652 KB
testcase_19 AC 91 ms
80,880 KB
testcase_20 AC 88 ms
81,304 KB
testcase_21 AC 71 ms
72,976 KB
testcase_22 AC 125 ms
94,180 KB
testcase_23 AC 70 ms
74,052 KB
testcase_24 AC 70 ms
73,148 KB
testcase_25 AC 46 ms
64,224 KB
testcase_26 AC 33 ms
52,836 KB
testcase_27 AC 51 ms
66,948 KB
testcase_28 AC 129 ms
94,320 KB
testcase_29 AC 131 ms
94,604 KB
testcase_30 AC 136 ms
94,184 KB
testcase_31 AC 133 ms
94,476 KB
testcase_32 AC 62 ms
69,952 KB
testcase_33 AC 62 ms
69,720 KB
testcase_34 AC 61 ms
69,340 KB
testcase_35 AC 60 ms
70,796 KB
testcase_36 AC 59 ms
69,692 KB
testcase_37 AC 56 ms
70,768 KB
testcase_38 AC 130 ms
94,708 KB
testcase_39 AC 123 ms
94,532 KB
testcase_40 AC 131 ms
94,396 KB
testcase_41 AC 58 ms
69,988 KB
testcase_42 AC 59 ms
70,436 KB
testcase_43 AC 61 ms
69,220 KB
testcase_44 AC 128 ms
94,540 KB
testcase_45 AC 131 ms
94,548 KB
testcase_46 AC 124 ms
94,232 KB
testcase_47 AC 127 ms
94,608 KB
testcase_48 AC 125 ms
94,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

T = int(readline())
N = int(readline())
P = [int(readline()) for i in range(N)]
# dp[num][S] = 分身の数num, 解いた問題の集合Sのときに、最後の分身が残している時間

dp = [[-1] * (1 << N) for i in range(N + 1)]
dp[0][0] = 0
for status in range(1 << N):
  for num in range(N + 1):
    if dp[num][status] == -1:
      continue
    for target in range(N): # 次に解く問題
      if (status >> target) & 1:
        continue
      next_status = status | (1 << target)
      if dp[num][status] >= P[target]: # 今の分身で解ける。
        if dp[num][next_status] < dp[num][status] - P[target]:
          dp[num][next_status] = dp[num][status] - P[target]
      else: # 新たな分身が必要
        if dp[num + 1][next_status] < T - P[target]:
          dp[num + 1][next_status] = T - P[target]
        

for i in range(N + 1):
  if dp[i][-1] != -1:
    print(i)
    break
    

0