結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー convexineqconvexineq
提出日時 2021-02-09 05:38:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 83,172 KB
最終ジャッジ日時 2024-07-06 11:38:39
合計ジャッジ時間 8,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,672 KB
testcase_01 AC 34 ms
52,864 KB
testcase_02 AC 33 ms
53,432 KB
testcase_03 AC 32 ms
53,080 KB
testcase_04 AC 45 ms
61,348 KB
testcase_05 AC 52 ms
63,040 KB
testcase_06 AC 56 ms
66,904 KB
testcase_07 AC 46 ms
62,140 KB
testcase_08 AC 44 ms
61,996 KB
testcase_09 AC 45 ms
63,700 KB
testcase_10 AC 40 ms
59,488 KB
testcase_11 AC 47 ms
63,788 KB
testcase_12 AC 46 ms
63,708 KB
testcase_13 AC 95 ms
76,868 KB
testcase_14 AC 101 ms
77,560 KB
testcase_15 AC 130 ms
78,820 KB
testcase_16 AC 162 ms
80,452 KB
testcase_17 AC 154 ms
80,696 KB
testcase_18 AC 87 ms
77,160 KB
testcase_19 AC 194 ms
82,056 KB
testcase_20 AC 118 ms
78,076 KB
testcase_21 AC 198 ms
81,804 KB
testcase_22 AC 118 ms
78,360 KB
testcase_23 AC 191 ms
82,024 KB
testcase_24 AC 105 ms
77,504 KB
testcase_25 AC 201 ms
81,748 KB
testcase_26 AC 90 ms
76,960 KB
testcase_27 AC 175 ms
80,476 KB
testcase_28 AC 157 ms
80,364 KB
testcase_29 AC 122 ms
78,932 KB
testcase_30 AC 198 ms
81,972 KB
testcase_31 AC 94 ms
76,888 KB
testcase_32 AC 99 ms
77,148 KB
testcase_33 AC 212 ms
83,172 KB
testcase_34 AC 198 ms
82,960 KB
testcase_35 AC 208 ms
82,860 KB
testcase_36 AC 190 ms
82,748 KB
testcase_37 AC 211 ms
82,872 KB
testcase_38 AC 211 ms
82,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
t = [0]*n
d = [0]*n
for i in range(n):
    t[i],d[i] = map(int,input().split())

def check(x): #x以上を全部任せるが可能か?
    v = -1<<32
    for i in range(n):
        if d[i] >= x:
            if t[i]-v < k: return False
            else: v = t[i]
    return True

ok = 10**9+1
ng = 0
while ok-ng > 1:
    mid = (ok+ng)//2
    if check(mid): ok = mid
    else: ng = mid


acc = [0]*(n+1)
INF = 1<<40
for i in range(n):
    if d[i] >= ok: d[i] = INF
    acc[i+1] += acc[i]+d[i]

from bisect import bisect_left
dp2 = [0]*n #dp[i] = i 日目までの仕事の最小値
for i in range(n):
    ti,di = t[i],d[i]
    idx = bisect_left(t,ti-k+1)
    x = (dp2[idx-1] if idx else 0) + acc[i] - acc[idx] #休むとき
    dp2[i] = min(dp2[i-1]+di,x)

print(ok-1)
print(dp2[-1])
0