結果

問題 No.817 Coin donation
ユーザー c-yanc-yan
提出日時 2021-02-13 06:51:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 63,136 KB
最終ジャッジ日時 2024-07-20 07:50:54
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 36 ms
12,020 KB
testcase_06 AC 71 ms
17,196 KB
testcase_07 AC 83 ms
18,332 KB
testcase_08 AC 313 ms
42,752 KB
testcase_09 AC 101 ms
19,208 KB
testcase_10 AC 489 ms
63,136 KB
testcase_11 AC 466 ms
63,052 KB
testcase_12 AC 469 ms
63,044 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from itertools import accumulate

readline = stdin.readline


def shrink(a):
    inv = sorted(set(a))
    n = len(inv)
    fwd = {}
    for i in range(n):
        fwd[inv[i]] = i
    return n, fwd, inv


N, K = map(int, readline().split())
AB = [tuple(map(int, readline().split())) for _ in range(N)]

p = []
for a, b in AB:
    p.append(a)
    p.append(b + 1)
n, fwd, inv = shrink(p)

t = [0] * n
for a, b in AB:
    t[fwd[a]] += 1
    t[fwd[b + 1]] -= 1
t = list(accumulate(t))

c = 0
for i in range(n):
    x = c + t[i] * (inv[i + 1] - inv[i])
    if x < K:
        c = x
        continue
    print(inv[i] + (K - c - 1) // t[i])
    break
0