結果

問題 No.2543 Many Meetings
ユーザー detteiuudetteiuu
提出日時 2024-10-23 00:03:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 259,248 KB
最終ジャッジ日時 2024-10-23 00:03:45
合計ジャッジ時間 22,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,100 KB
testcase_01 AC 40 ms
55,252 KB
testcase_02 AC 40 ms
54,060 KB
testcase_03 AC 826 ms
258,028 KB
testcase_04 AC 827 ms
258,188 KB
testcase_05 AC 866 ms
258,540 KB
testcase_06 AC 805 ms
258,028 KB
testcase_07 AC 842 ms
258,020 KB
testcase_08 AC 925 ms
258,804 KB
testcase_09 AC 902 ms
258,128 KB
testcase_10 AC 910 ms
259,248 KB
testcase_11 AC 929 ms
258,260 KB
testcase_12 AC 926 ms
258,284 KB
testcase_13 AC 733 ms
258,680 KB
testcase_14 AC 501 ms
205,368 KB
testcase_15 AC 428 ms
197,004 KB
testcase_16 AC 712 ms
254,056 KB
testcase_17 AC 723 ms
256,956 KB
testcase_18 AC 776 ms
257,016 KB
testcase_19 AC 681 ms
257,604 KB
testcase_20 AC 730 ms
257,880 KB
testcase_21 AC 898 ms
259,164 KB
testcase_22 AC 685 ms
256,732 KB
testcase_23 AC 69 ms
73,124 KB
testcase_24 AC 49 ms
63,472 KB
testcase_25 AC 64 ms
65,516 KB
testcase_26 AC 62 ms
69,572 KB
testcase_27 AC 72 ms
72,864 KB
testcase_28 AC 643 ms
256,624 KB
testcase_29 AC 260 ms
133,748 KB
testcase_30 AC 295 ms
133,388 KB
testcase_31 AC 240 ms
127,144 KB
testcase_32 AC 649 ms
258,308 KB
testcase_33 AC 42 ms
54,784 KB
testcase_34 AC 40 ms
53,868 KB
testcase_35 AC 41 ms
54,312 KB
testcase_36 AC 40 ms
54,528 KB
testcase_37 AC 41 ms
54,136 KB
testcase_38 AC 41 ms
55,620 KB
testcase_39 AC 41 ms
54,416 KB
testcase_40 AC 40 ms
54,872 KB
testcase_41 AC 42 ms
54,312 KB
testcase_42 AC 41 ms
54,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, K = map(int, input().split())
LR = sorted([list(map(int, input().split())) for _ in range(N)], key=lambda x:x[1])

nex = [N]*N
que = deque()
for i, (L, R) in enumerate(LR):
    while que and que[0][0] <= L:
        n, idx = que.popleft()
        nex[idx] = i
    que.append((R, i))

nex = [nex[:]]
for i in range(29):
    A = []
    for j in range(N):
        if nex[i][j] < N:
            A.append(nex[i][nex[i][j]])
        else:
            A.append(N)
    nex.append(A)

ans = 10**18
K -= 1
for i in range(N):
    goal = i
    for j in range(30):
        if 1<<j & K:
            goal = nex[j][goal]
            if goal == N:
                break
    if goal < N:
        L1, R1 = LR[i]
        L2, R2 = LR[goal]
        ans = min(ans, R2-L1)

print(ans if ans != 10**18 else -1)
0