結果

問題 No.2741 Balanced Choice
ユーザー mkawa2mkawa2
提出日時 2024-04-20 14:38:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 2,003 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-04-20 14:38:42
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
76,928 KB
testcase_01 AC 242 ms
77,184 KB
testcase_02 AC 249 ms
76,800 KB
testcase_03 AC 268 ms
76,672 KB
testcase_04 AC 238 ms
77,056 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 159 ms
77,028 KB
testcase_08 AC 211 ms
76,672 KB
testcase_09 AC 146 ms
76,672 KB
testcase_10 AC 190 ms
76,800 KB
testcase_11 AC 214 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(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-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

class SparseTable:
    def __init__(self, op, e, aa):
        self.op = op
        self.e = e
        self.w = w = len(aa)
        self.h = h = w.bit_length()
        table = [aa]+[[e() for _ in range(w)] for _ in range(h-1)]
        tablei1 = table[0]
        for i in range(1, h):
            tablei = table[i]
            for j in range(w-(1 << i)+1):
                rj = j+(1 << (i-1))
                tablei[j] = op(tablei1[j], tablei1[rj])
            tablei1 = tablei
        self.table = table

    # [l,r)の取得
    def prod(self, l, r):
        if l == r: return self.e()
        i = (r-l).bit_length()-1
        tablei = self.table[i]
        return self.op(tablei[l], tablei[r-(1 << i)])

n,W,D=LI()
ww=[[],[]]
vv=[[],[]]

for _ in range(n):
    t,w,v=LI()
    ww[t].append(w)
    vv[t].append(v)

dp=[[-inf]*(W+1),[-inf]*(W+1)]
dp[0][0]=dp[1][0]=0
for t in [0,1]:
    dpt=dp[t]
    for w,v in zip(ww[t],vv[t]):
        for i in range(W-w,-1,-1):
            if dpt[i]==-inf:continue
            dpt[i+w]=max(dpt[i+w],dpt[i]+v)

sp=SparseTable(max,lambda :-inf,dp[1])
ans=0
for i in range(W+1):
    l=max(0,i-D)
    r=min(i+D+1,W-i+1)
    if l>=r:continue
    cur=dp[0][i]+sp.prod(l,r)
    if cur>ans:ans=cur
print(ans)
0