結果
問題 | No.1947 質より種類数 |
ユーザー | mkawa2 |
提出日時 | 2022-05-20 23:28:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,092 bytes |
コンパイル時間 | 255 ms |
コンパイル使用メモリ | 82,064 KB |
実行使用メモリ | 455,376 KB |
最終ジャッジ日時 | 2024-09-20 09:56:08 |
合計ジャッジ時間 | 10,900 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
59,972 KB |
testcase_01 | AC | 35 ms
53,676 KB |
testcase_02 | AC | 36 ms
53,608 KB |
testcase_03 | AC | 35 ms
52,468 KB |
testcase_04 | AC | 58 ms
69,984 KB |
testcase_05 | WA | - |
testcase_06 | AC | 61 ms
71,300 KB |
testcase_07 | AC | 58 ms
69,676 KB |
testcase_08 | AC | 63 ms
71,684 KB |
testcase_09 | AC | 100 ms
85,468 KB |
testcase_10 | AC | 85 ms
82,900 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 76 ms
74,360 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 md = 10**9+7 # md = 998244353 n, V, c = LI() dp = [[0]*(n+1) for _ in range(V+1)] mx = [[0]*(n+1) for _ in range(V+1)] vw = LLI(n) ans = 0 for i in range(1, V+1): for j, (v, w) in enumerate(vw, 1): if i-v < 0: continue dp[i][j] = max(dp[i-v][j]+w, mx[i-v][j-1]+w+c) mx[i][j] = max(dp[i][j], mx[i][j-1]) ans = max(ans, dp[i][j]) # p2D(dp) # p2D(mx) print(ans)