結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー titiatitia
提出日時 2024-01-14 03:30:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 934 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 146,560 KB
最終ジャッジ日時 2024-09-28 01:56:35
合計ジャッジ時間 9,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 44 ms
60,160 KB
testcase_05 AC 47 ms
60,160 KB
testcase_06 AC 53 ms
64,640 KB
testcase_07 AC 43 ms
59,136 KB
testcase_08 AC 43 ms
59,264 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 39 ms
52,736 KB
testcase_11 AC 48 ms
61,184 KB
testcase_12 AC 48 ms
60,928 KB
testcase_13 AC 117 ms
83,144 KB
testcase_14 AC 117 ms
83,840 KB
testcase_15 AC 160 ms
103,040 KB
testcase_16 AC 233 ms
123,008 KB
testcase_17 AC 213 ms
124,416 KB
testcase_18 AC 107 ms
81,920 KB
testcase_19 AC 280 ms
138,624 KB
testcase_20 AC 157 ms
98,048 KB
testcase_21 AC 274 ms
129,224 KB
testcase_22 AC 159 ms
98,560 KB
testcase_23 AC 278 ms
140,160 KB
testcase_24 AC 136 ms
89,216 KB
testcase_25 AC 274 ms
138,880 KB
testcase_26 AC 108 ms
81,664 KB
testcase_27 AC 225 ms
122,752 KB
testcase_28 AC 212 ms
117,888 KB
testcase_29 AC 156 ms
99,200 KB
testcase_30 AC 287 ms
145,408 KB
testcase_31 AC 111 ms
82,944 KB
testcase_32 AC 113 ms
83,712 KB
testcase_33 AC 298 ms
146,048 KB
testcase_34 AC 311 ms
146,432 KB
testcase_35 AC 351 ms
146,560 KB
testcase_36 AC 323 ms
145,792 KB
testcase_37 AC 319 ms
146,176 KB
testcase_38 AC 306 ms
145,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from bisect import bisect_left,bisect

N,K=map(int,input().split())

TD=[list(map(int,input().split())) for i in range(N)]

SUM=0
LIST=[]
for t,d in TD:
    LIST.append(d)
    SUM+=d

LIST.append(0)
LIST.append(10**10)
LIST=sorted(set(LIST))

OK=len(LIST)-1
NG=0

while OK>NG+1:
    mid=(OK+NG)//2

    flag=0
    x=-1<<30

    for t,d in TD:
        if d>=LIST[mid]:
            if t-x<K:
                flag=1
                break
            else:
                x=t

    if flag==0:
        OK=mid
    else:
        NG=mid

DP=[(-2*10**9,0)]

for t,d in TD:
    #print(DP)
    x=bisect(DP,(t-K,10**10))-1
    #print(x)

    if d>LIST[OK-1]:
        a,b=DP[x]
        DP=[(-2000000000, 0),(t,d+b)]

    else:
        a,b=DP[x]
        DP.append((t,d+b))

    #print(DP)

    while len(DP)>=2 and DP[-1][1]<=DP[-2][1]:
        DP.pop()
    
        

print(LIST[OK-1])
print(SUM-DP[-1][1])
0