結果

問題 No.733 分身並列コーディング
ユーザー shotoyooshotoyoo
提出日時 2021-05-09 19:37:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-09-19 00:43:34
合計ジャッジ時間 16,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 WA -
testcase_02 AC 45 ms
60,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 567 ms
93,952 KB
testcase_06 WA -
testcase_07 AC 568 ms
94,848 KB
testcase_08 AC 568 ms
93,952 KB
testcase_09 AC 342 ms
84,480 KB
testcase_10 AC 87 ms
73,344 KB
testcase_11 AC 99 ms
72,576 KB
testcase_12 AC 50 ms
60,160 KB
testcase_13 AC 42 ms
52,480 KB
testcase_14 AC 221 ms
80,000 KB
testcase_15 AC 80 ms
70,528 KB
testcase_16 AC 42 ms
52,096 KB
testcase_17 AC 46 ms
61,696 KB
testcase_18 AC 94 ms
73,984 KB
testcase_19 AC 341 ms
84,480 KB
testcase_20 AC 345 ms
84,736 KB
testcase_21 AC 224 ms
79,744 KB
testcase_22 AC 643 ms
93,952 KB
testcase_23 AC 202 ms
80,128 KB
testcase_24 AC 189 ms
79,872 KB
testcase_25 AC 67 ms
65,792 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 77 ms
70,656 KB
testcase_28 AC 593 ms
94,848 KB
testcase_29 AC 628 ms
94,464 KB
testcase_30 AC 576 ms
94,208 KB
testcase_31 AC 637 ms
94,208 KB
testcase_32 AC 122 ms
78,080 KB
testcase_33 AC 132 ms
77,568 KB
testcase_34 AC 140 ms
77,952 KB
testcase_35 AC 156 ms
78,208 KB
testcase_36 AC 131 ms
77,824 KB
testcase_37 AC 134 ms
78,080 KB
testcase_38 AC 573 ms
94,208 KB
testcase_39 AC 651 ms
94,464 KB
testcase_40 AC 584 ms
94,208 KB
testcase_41 AC 134 ms
78,208 KB
testcase_42 AC 128 ms
78,080 KB
testcase_43 AC 131 ms
77,952 KB
testcase_44 AC 629 ms
94,464 KB
testcase_45 AC 639 ms
94,080 KB
testcase_46 AC 638 ms
94,208 KB
testcase_47 AC 579 ms
94,336 KB
testcase_48 AC 665 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


t = int(input())
n = int(input())
a = [int(input()) for _ in range(n)]
inf = 10**12
dp = [[inf]*(1<<n) for _ in range(n+1)]
def chmin(dp,i,b,val):
    dp[i][b] = min(dp[i][b], val)
dp[0][0] = 0
for i in range(n):
    for b in range(1<<n):
        val = dp[i][b]
        for j in range(n):
            if b>>j&1:
                continue
            chmin(dp,i,b|(1<<j),val+a[j])
        if val<=t:
            chmin(dp,i+1,b,0)
ans = inf
for i in range(n):
    if dp[i][(1<<n)-1]==0:
        ans = i
        break
print(ans)
0