結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー mkawa2mkawa2
提出日時 2020-04-25 18:24:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,298 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 81,104 KB
最終ジャッジ日時 2024-11-07 12:41:56
合計ジャッジ時間 14,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 32 ms
11,136 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
10,880 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 109 ms
18,688 KB
testcase_14 AC 118 ms
19,564 KB
testcase_15 AC 249 ms
32,648 KB
testcase_16 AC 506 ms
52,468 KB
testcase_17 AC 357 ms
44,888 KB
testcase_18 AC 82 ms
17,792 KB
testcase_19 AC 680 ms
67,936 KB
testcase_20 AC 201 ms
26,272 KB
testcase_21 AC 567 ms
58,920 KB
testcase_22 AC 221 ms
27,172 KB
testcase_23 AC 615 ms
59,300 KB
testcase_24 AC 163 ms
24,080 KB
testcase_25 AC 606 ms
58,824 KB
testcase_26 AC 93 ms
17,408 KB
testcase_27 AC 452 ms
45,808 KB
testcase_28 AC 473 ms
49,432 KB
testcase_29 AC 247 ms
30,544 KB
testcase_30 AC 677 ms
69,068 KB
testcase_31 AC 93 ms
18,560 KB
testcase_32 AC 98 ms
19,328 KB
testcase_33 AC 751 ms
72,140 KB
testcase_34 AC 596 ms
62,372 KB
testcase_35 AC 810 ms
81,104 KB
testcase_36 AC 585 ms
62,500 KB
testcase_37 AC 702 ms
67,020 KB
testcase_38 AC 564 ms
62,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)

def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    def ok(m):
        pt=-inf
        mxd=dd[m]
        # Ameの最大難易度をmxdとする
        # Yukiに振る仕事(難易度がmxdより大きい仕事)だけをみたとき
        # 時間の間隔がk以上空いているかチェックする
        for t,d in td:
            if d<=mxd:continue
            if t-pt<k:return False
            pt=t
        return True

    inf=10**10
    n,k=MI()
    td=LLI(n)
    # Ameの難易度最大値を二分探索
    dd=[0]+sorted(set(d for t,d in td))
    #print(dd)
    l=-1
    r=len(dd)
    while l+1<r:
        m=(l+r)//2
        if ok(m):r=m
        else:l=m
    mxd=dd[r]
    print(mxd)
    if r==0:
        print(0)
        exit()
    # Ameの最大難易度mxd以内の仕事のうち、Yukiに渡せるものをできるだけ渡す
    # Yukiの確定している仕事時刻を集計
    ytt=[t for t,d in td if d>mxd]
    # Ameの仕事のうち、Yukiの仕事から時間がk以上離れているものを集める
    # ついでにAmeの難易度合計totも計算
    tot=0
    i=0
    cando=[]
    for t,d in td:
        if d>mxd:continue
        tot+=d
        while i<len(ytt)-1 and t>ytt[i]+k:i+=1
        if abs(t-ytt[i])>=k:cando.append((t,d))
    # candoの中から、AmeからYukiに渡す仕事の難易度合計の最大値mxを求める
    # DPみたいな感じで
    # 時間順に見ていって、k時間以上前の最大難易度premaxに今の難易度を足していく
    premax=0
    # 処理の終わった、時刻と合計難易度をttとsdに入れていく
    tt=[-inf]
    sd=[0]
    mx=0
    for t,d in cando:
        # 時刻tからk以上離れている合計難易度の最大値を作る
        while i<len(tt) and tt[i]<=t-k:
            premax=max(premax,sd[i])
            i+=1
        # この仕事をやるときの最大難易度cur
        cur=premax+d
        tt.append(t)
        sd.append(cur)
        mx=max(mx,cur)
    # totのうちmxをYukiに渡すので、引き算するとAmeの難易度合計
    print(tot-mx)

main()
0