結果

問題 No.2543 Many Meetings
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-24 22:35:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 851 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 161,140 KB
最終ジャッジ日時 2024-09-26 09:38:46
合計ジャッジ時間 19,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 769 ms
160,616 KB
testcase_04 AC 764 ms
161,140 KB
testcase_05 AC 765 ms
160,756 KB
testcase_06 AC 775 ms
160,888 KB
testcase_07 AC 781 ms
160,624 KB
testcase_08 AC 808 ms
160,728 KB
testcase_09 AC 828 ms
160,736 KB
testcase_10 AC 824 ms
160,984 KB
testcase_11 AC 806 ms
160,860 KB
testcase_12 AC 814 ms
160,732 KB
testcase_13 AC 728 ms
138,524 KB
testcase_14 AC 458 ms
111,704 KB
testcase_15 AC 383 ms
111,812 KB
testcase_16 AC 641 ms
128,284 KB
testcase_17 AC 738 ms
138,732 KB
testcase_18 AC 728 ms
142,152 KB
testcase_19 AC 655 ms
137,184 KB
testcase_20 AC 660 ms
138,616 KB
testcase_21 AC 851 ms
154,416 KB
testcase_22 AC 653 ms
138,960 KB
testcase_23 AC 83 ms
70,656 KB
testcase_24 AC 59 ms
62,592 KB
testcase_25 AC 64 ms
65,152 KB
testcase_26 AC 70 ms
66,944 KB
testcase_27 AC 82 ms
70,528 KB
testcase_28 AC 526 ms
135,180 KB
testcase_29 AC 244 ms
96,256 KB
testcase_30 AC 245 ms
96,128 KB
testcase_31 AC 211 ms
91,008 KB
testcase_32 AC 492 ms
129,964 KB
testcase_33 AC 47 ms
53,632 KB
testcase_34 AC 48 ms
53,888 KB
testcase_35 AC 47 ms
53,760 KB
testcase_36 AC 47 ms
53,760 KB
testcase_37 AC 47 ms
53,888 KB
testcase_38 AC 47 ms
54,016 KB
testcase_39 AC 48 ms
53,760 KB
testcase_40 AC 47 ms
53,888 KB
testcase_41 AC 46 ms
53,760 KB
testcase_42 AC 48 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,k = map(int,input().split())
LR = [list(map(int,input().split())) for i in range(n)]

par = [-1]*n

sLR = [[l,r,i] for i,(l,r) in enumerate(LR)]
sLR.sort(key=lambda x: x[1])
wait = deque([])
for l,r,ind in sLR:

    while wait and wait[0][1] <= l:
        bl,br,bind = wait.popleft()
        par[bind] = ind
    
    wait.append([l,r,ind])


doubling = [[-1]*n for i in range(20)]
doubling[0] = par[:]

for i in range(1,20):

    for j in range(n):
        pos = doubling[i-1][j]
        if pos == -1:
            continue
        pos = doubling[i-1][pos]
        doubling[i][j] = pos


ans = 10**10

for i in range(n):

    res = k-1
    now = i
    for j in range(20)[::-1]:
        if 1<<j <= res and now != -1:
            now = doubling[j][now]
            res -= 1<<j
    if now != -1:
        ans = min(ans,LR[now][1]-LR[i][0])


if ans == 10**10:
    ans = -1

print(ans)
0