結果

問題 No.1715 Dinner 2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-22 22:08:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 938 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 76,372 KB
最終ジャッジ日時 2024-09-23 05:39:47
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 45 ms
60,288 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 45 ms
60,672 KB
testcase_05 AC 43 ms
58,624 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 45 ms
60,160 KB
testcase_08 AC 44 ms
59,520 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 45 ms
59,904 KB
testcase_11 AC 196 ms
75,904 KB
testcase_12 AC 168 ms
73,336 KB
testcase_13 AC 152 ms
76,372 KB
testcase_14 AC 170 ms
76,344 KB
testcase_15 AC 182 ms
76,348 KB
testcase_16 AC 184 ms
76,060 KB
testcase_17 AC 146 ms
73,600 KB
testcase_18 AC 62 ms
67,456 KB
testcase_19 AC 63 ms
68,352 KB
testcase_20 AC 59 ms
66,944 KB
testcase_21 AC 58 ms
66,688 KB
testcase_22 AC 62 ms
68,352 KB
testcase_23 AC 62 ms
67,712 KB
testcase_24 AC 68 ms
71,040 KB
testcase_25 AC 82 ms
73,216 KB
testcase_26 AC 79 ms
73,088 KB
testcase_27 AC 76 ms
71,808 KB
testcase_28 AC 81 ms
74,184 KB
testcase_29 AC 77 ms
72,864 KB
testcase_30 AC 75 ms
71,808 KB
testcase_31 AC 82 ms
73,984 KB
testcase_32 AC 232 ms
76,288 KB
testcase_33 AC 216 ms
74,396 KB
testcase_34 AC 243 ms
76,108 KB
testcase_35 AC 248 ms
76,140 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

同じ2種類のみを繰り返すのが最適?
最後の方は、そうとは限らない

二分探索か?
最低を下回らない範囲内で、一番跳ね返りが大きいのを選ぶのが最適

"""

import sys
from sys import stdin
import math

N,D = map(int,stdin.readline().split())

PQ = []
PG = []

for i in range(N):
    P,Q = map(int,stdin.readline().split())
    PQ.append((P,Q))
    PG.append( (P,Q-P) )

PG.sort()

r = 0
l = -10**9

while r-l != 1:

    m = (l+r)//2

    now = 0
    last = None

    able = True

    for day in range(D):

        nind = None
    
        for i in range(N):
            p,g = PG[i]
            if now - p >= m and i != last and (nind == None or PG[nind][1] < g):
                nind = i

        if nind == None:
            able = False
            break

        last = nind
        now += PG[nind][1]

    if able:
        l = m
    else:
        r = m

print (l)
        
0