結果

問題 No.733 分身並列コーディング
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-26 13:03:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 579 ms / 1,500 ms
コード長 714 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 95,488 KB
最終ジャッジ日時 2024-10-03 00:24:37
合計ジャッジ時間 13,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,560 KB
testcase_01 AC 46 ms
55,888 KB
testcase_02 AC 53 ms
62,964 KB
testcase_03 AC 545 ms
95,292 KB
testcase_04 AC 579 ms
94,992 KB
testcase_05 AC 465 ms
95,488 KB
testcase_06 AC 47 ms
55,360 KB
testcase_07 AC 479 ms
95,004 KB
testcase_08 AC 476 ms
95,252 KB
testcase_09 AC 275 ms
85,264 KB
testcase_10 AC 91 ms
77,412 KB
testcase_11 AC 92 ms
77,532 KB
testcase_12 AC 53 ms
63,964 KB
testcase_13 AC 47 ms
55,944 KB
testcase_14 AC 168 ms
80,720 KB
testcase_15 AC 77 ms
74,968 KB
testcase_16 AC 47 ms
57,612 KB
testcase_17 AC 59 ms
65,480 KB
testcase_18 AC 90 ms
77,420 KB
testcase_19 AC 278 ms
85,832 KB
testcase_20 AC 271 ms
85,816 KB
testcase_21 AC 167 ms
80,736 KB
testcase_22 AC 468 ms
95,220 KB
testcase_23 AC 140 ms
80,672 KB
testcase_24 AC 137 ms
80,756 KB
testcase_25 AC 58 ms
70,052 KB
testcase_26 AC 42 ms
57,684 KB
testcase_27 AC 77 ms
73,888 KB
testcase_28 AC 460 ms
95,088 KB
testcase_29 AC 450 ms
94,996 KB
testcase_30 AC 452 ms
95,012 KB
testcase_31 AC 441 ms
95,164 KB
testcase_32 AC 98 ms
78,476 KB
testcase_33 AC 96 ms
78,632 KB
testcase_34 AC 99 ms
78,888 KB
testcase_35 AC 95 ms
78,500 KB
testcase_36 AC 93 ms
78,872 KB
testcase_37 AC 97 ms
78,732 KB
testcase_38 AC 424 ms
95,136 KB
testcase_39 AC 434 ms
95,024 KB
testcase_40 AC 432 ms
95,120 KB
testcase_41 AC 94 ms
78,900 KB
testcase_42 AC 95 ms
78,624 KB
testcase_43 AC 95 ms
78,428 KB
testcase_44 AC 432 ms
95,340 KB
testcase_45 AC 433 ms
95,076 KB
testcase_46 AC 430 ms
95,332 KB
testcase_47 AC 432 ms
95,284 KB
testcase_48 AC 432 ms
95,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

T = int(input())
N = int(input())
t = [int(input()) for _ in range(N)]
INF = (1<<30)
dp = [[INF]*(1<<N) for _ in range(N+1)]
dp[0][0] = 0
    
for i in range(1<<N):
    cnd = []
    for j in range(N):
        if (i>>j)&1:
            continue
        else:
            cnd.append(j)
    
    for k in range(N):
        
        for c in cnd:
            
            S = i|(1<<c)
            dp[k][S] = min(dp[k][S],dp[k][i] + t[c])
            if dp[k][S]<=T:
                dp[k+1][S] = 0
          
for i in range(N+1):
    if dp[i][-1]==0:
        print(i)
        exit()
0