結果

問題 No.733 分身並列コーディング
ユーザー shotoyooshotoyoo
提出日時 2021-05-09 19:38:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 1,500 ms
コード長 753 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 94,868 KB
最終ジャッジ日時 2024-09-19 00:44:22
合計ジャッジ時間 16,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 46 ms
60,160 KB
testcase_03 AC 649 ms
94,316 KB
testcase_04 AC 610 ms
94,336 KB
testcase_05 AC 556 ms
94,716 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 569 ms
94,440 KB
testcase_08 AC 577 ms
94,436 KB
testcase_09 AC 338 ms
84,608 KB
testcase_10 AC 86 ms
73,344 KB
testcase_11 AC 93 ms
73,216 KB
testcase_12 AC 47 ms
60,160 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 210 ms
80,044 KB
testcase_15 AC 78 ms
71,168 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 50 ms
61,696 KB
testcase_18 AC 95 ms
74,528 KB
testcase_19 AC 331 ms
84,916 KB
testcase_20 AC 342 ms
84,992 KB
testcase_21 AC 214 ms
80,000 KB
testcase_22 AC 649 ms
94,336 KB
testcase_23 AC 211 ms
80,388 KB
testcase_24 AC 186 ms
80,256 KB
testcase_25 AC 59 ms
66,304 KB
testcase_26 AC 37 ms
52,708 KB
testcase_27 AC 79 ms
71,168 KB
testcase_28 AC 571 ms
94,500 KB
testcase_29 AC 628 ms
94,320 KB
testcase_30 AC 607 ms
94,672 KB
testcase_31 AC 648 ms
94,868 KB
testcase_32 AC 132 ms
77,860 KB
testcase_33 AC 132 ms
77,852 KB
testcase_34 AC 143 ms
77,952 KB
testcase_35 AC 129 ms
77,896 KB
testcase_36 AC 121 ms
78,080 KB
testcase_37 AC 127 ms
78,464 KB
testcase_38 AC 590 ms
94,336 KB
testcase_39 AC 682 ms
94,744 KB
testcase_40 AC 577 ms
94,592 KB
testcase_41 AC 123 ms
77,824 KB
testcase_42 AC 121 ms
78,188 KB
testcase_43 AC 123 ms
77,892 KB
testcase_44 AC 638 ms
94,464 KB
testcase_45 AC 630 ms
94,592 KB
testcase_46 AC 702 ms
94,592 KB
testcase_47 AC 572 ms
94,588 KB
testcase_48 AC 638 ms
94,304 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+1):
    if dp[i][(1<<n)-1]==0:
        ans = i
        break
print(ans)
0