結果

問題 No.974 最後の日までに
ユーザー convexineqconvexineq
提出日時 2021-05-05 02:24:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,479 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 184,108 KB
最終ジャッジ日時 2024-07-23 21:50:08
合計ジャッジ時間 49,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,353 ms
183,428 KB
testcase_01 AC 1,394 ms
177,996 KB
testcase_02 AC 1,348 ms
174,212 KB
testcase_03 AC 1,342 ms
178,220 KB
testcase_04 AC 1,359 ms
178,984 KB
testcase_05 AC 1,368 ms
174,864 KB
testcase_06 AC 1,353 ms
174,928 KB
testcase_07 AC 1,363 ms
180,384 KB
testcase_08 AC 1,363 ms
180,724 KB
testcase_09 AC 1,351 ms
180,884 KB
testcase_10 AC 1,365 ms
180,628 KB
testcase_11 AC 1,431 ms
181,492 KB
testcase_12 AC 1,419 ms
181,944 KB
testcase_13 AC 1,393 ms
178,240 KB
testcase_14 AC 1,366 ms
177,760 KB
testcase_15 AC 1,422 ms
175,524 KB
testcase_16 AC 1,419 ms
179,568 KB
testcase_17 AC 986 ms
177,096 KB
testcase_18 AC 988 ms
176,680 KB
testcase_19 AC 975 ms
177,568 KB
testcase_20 AC 997 ms
176,820 KB
testcase_21 AC 996 ms
176,580 KB
testcase_22 AC 997 ms
177,088 KB
testcase_23 AC 1,017 ms
177,468 KB
testcase_24 AC 996 ms
176,956 KB
testcase_25 AC 48 ms
63,444 KB
testcase_26 AC 59 ms
66,280 KB
testcase_27 AC 1,170 ms
159,092 KB
testcase_28 AC 1,432 ms
180,024 KB
testcase_29 AC 37 ms
52,692 KB
testcase_30 AC 1,140 ms
183,232 KB
testcase_31 AC 37 ms
53,576 KB
testcase_32 AC 37 ms
52,072 KB
testcase_33 AC 1,056 ms
140,668 KB
testcase_34 AC 1,479 ms
177,252 KB
testcase_35 AC 37 ms
53,196 KB
testcase_36 AC 37 ms
53,352 KB
testcase_37 AC 1,273 ms
183,072 KB
testcase_38 AC 39 ms
53,444 KB
testcase_39 AC 37 ms
53,164 KB
testcase_40 AC 875 ms
155,424 KB
testcase_41 AC 1,024 ms
184,108 KB
testcase_42 AC 1,304 ms
181,796 KB
testcase_43 AC 1,416 ms
182,552 KB
testcase_44 AC 1,081 ms
153,908 KB
testcase_45 AC 872 ms
140,068 KB
testcase_46 AC 37 ms
52,808 KB
testcase_47 AC 37 ms
52,992 KB
testcase_48 AC 38 ms
52,348 KB
testcase_49 AC 38 ms
51,876 KB
testcase_50 AC 37 ms
52,820 KB
testcase_51 AC 38 ms
52,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(t,m,v,w):
    global ans
    if t==w:
        L.append([m,v])
        return
    dfs(t+1,m+a[t],v,w)
    if t+1 < w: dfs(t+2,m-c[t+1],v+b[t+1],w)

def solve(x,y):
    x.sort(key=f)
    y.sort(key=f)
    for i in range(len(x)-1)[::-1]:
        if x[i][1] < x[i+1][1]: x[i][1] = x[i+1][1]
    ans = idx = 0
    L = len(x)
    for m,v in y[::-1]:
        while idx < L and x[idx][0] + m < 0:
            idx += 1
        if idx < L:
            ans = max(ans,x[idx][1]+v)
    return ans

w = int(input())
a,b,c = [0]*w, [0]*w, [0]*w
for i in range(w):
    a[i],b[i],c[i] = map(int,input().split())
ans = 0
for W in [w//2,w//2+1]:
    f = lambda x:x[0]
    L = x = []
    dfs(0,0,0,W)
    L = y = []
    dfs(W,0,0,w)
    ans = max(ans,solve(x,y))
print(ans)
0