結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | titia |
提出日時 | 2024-07-11 03:28:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 636 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 82,268 KB |
実行使用メモリ | 561,596 KB |
最終ジャッジ日時 | 2024-07-11 03:28:42 |
合計ジャッジ時間 | 5,248 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,728 KB |
testcase_01 | AC | 51 ms
57,472 KB |
testcase_02 | AC | 54 ms
60,928 KB |
testcase_03 | AC | 52 ms
60,032 KB |
testcase_04 | WA | - |
testcase_05 | AC | 50 ms
58,880 KB |
testcase_06 | MLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
import sys input = sys.stdin.readline N,M=map(int,input().split()) X=[list(map(int,input().split())) for i in range(N)] M0=M X.sort(reverse=True) X.sort(key=lambda x:x[0]/x[1],reverse=True) ANS=0 LASTS=[] for i in range(len(X)): v,w=X[i] if w<=M: ANS+=v M-=w LASTS.append((i,ANS,M)) if len(LASTS)<10: Q=[(0,0)] first=0 ANS=0 M=M0 else: first,ANS,M=LASTS[-10] Q=[(0,0)] for i in range(first,len(X)): v,w=X[i] NQ=[] for x,y in Q: if w+y<=M: NQ.append((v+x,w+y)) Q+=NQ MAX=0 for x,y in Q: MAX=max(MAX,x) print(ANS+MAX)