結果

問題 No.2869 yuusaan's Knapsacks
ユーザー 寝癖寝癖
提出日時 2024-07-20 10:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,053 ms / 4,500 ms
コード長 1,041 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 80,940 KB
最終ジャッジ日時 2024-08-04 18:04:51
合計ジャッジ時間 39,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,964 KB
testcase_01 AC 34 ms
52,936 KB
testcase_02 AC 43 ms
62,052 KB
testcase_03 AC 845 ms
72,300 KB
testcase_04 AC 838 ms
72,072 KB
testcase_05 AC 35 ms
53,692 KB
testcase_06 AC 2,240 ms
80,608 KB
testcase_07 AC 1,019 ms
73,332 KB
testcase_08 AC 334 ms
71,920 KB
testcase_09 AC 202 ms
70,296 KB
testcase_10 AC 1,276 ms
75,332 KB
testcase_11 AC 692 ms
71,444 KB
testcase_12 AC 2,078 ms
79,752 KB
testcase_13 AC 576 ms
70,748 KB
testcase_14 AC 1,369 ms
76,612 KB
testcase_15 AC 954 ms
74,280 KB
testcase_16 AC 1,084 ms
76,600 KB
testcase_17 AC 3,239 ms
80,164 KB
testcase_18 AC 2,186 ms
79,092 KB
testcase_19 AC 1,678 ms
77,568 KB
testcase_20 AC 220 ms
69,940 KB
testcase_21 AC 1,980 ms
80,412 KB
testcase_22 AC 2,749 ms
77,272 KB
testcase_23 AC 620 ms
73,064 KB
testcase_24 AC 2,632 ms
80,940 KB
testcase_25 AC 457 ms
72,128 KB
testcase_26 AC 4,053 ms
77,332 KB
testcase_27 AC 36 ms
53,288 KB
testcase_28 AC 2,135 ms
80,532 KB
testcase_29 AC 2,200 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
e = list(map(int, input().split()))
v, w = [], []
for _ in range(M):
    vi, wi = map(int, input().split())
    v.append(vi)
    w.append(wi)

sum_v, sum_w = [0]*(1<<M), [0]*(1<<M)
for S in range(1<<M):
    for i in range(M):
        if S>>i&1:
            sum_v[S] += v[i]
            sum_w[S] += w[i]

dp = [[0]*(1<<M) for _ in range(N+1)]
for i in range(N):
    for S in range(1<<M):
        U = (1<<M) - 1 - S
        T = U
        while True:
            if sum_w[T] <= e[i]:
                dp[i+1][S|T] = max(dp[i+1][S|T], dp[i][S]+sum_v[T])
            if T == 0:
                break
            T = (T-1)&U

m = max(dp[N]) 
S = dp[N].index(m)

ans = [[] for _ in range(N)]
for i in range(N, 0, -1):
    T = S
    while True:
        if dp[i][S] == dp[i-1][S^T] + sum_v[T] and sum_w[T] <= e[i-1]:
            for j in range(M):
                if T>>j&1:
                    ans[i-1].append(j+1)
            S ^= T
            break
        T = (T-1)&S

print(m)
for a in ans:
    print(len(a), *a)
0