結果

問題 No.2543 Many Meetings
ユーザー rlangevinrlangevin
提出日時 2023-11-25 20:38:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,443 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 135,560 KB
最終ジャッジ日時 2024-09-26 11:15:04
合計ジャッジ時間 31,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 1,417 ms
135,308 KB
testcase_04 AC 1,415 ms
135,176 KB
testcase_05 AC 1,425 ms
135,168 KB
testcase_06 AC 1,391 ms
135,432 KB
testcase_07 AC 1,405 ms
135,432 KB
testcase_08 AC 1,421 ms
135,560 KB
testcase_09 AC 1,442 ms
135,176 KB
testcase_10 AC 1,438 ms
135,300 KB
testcase_11 AC 1,405 ms
135,168 KB
testcase_12 AC 1,443 ms
135,172 KB
testcase_13 AC 1,161 ms
122,108 KB
testcase_14 AC 660 ms
101,384 KB
testcase_15 AC 663 ms
101,352 KB
testcase_16 AC 961 ms
114,032 KB
testcase_17 AC 1,180 ms
121,616 KB
testcase_18 AC 1,298 ms
126,228 KB
testcase_19 AC 1,191 ms
121,728 KB
testcase_20 AC 1,201 ms
121,820 KB
testcase_21 AC 1,421 ms
128,600 KB
testcase_22 AC 1,158 ms
121,276 KB
testcase_23 AC 71 ms
67,328 KB
testcase_24 AC 51 ms
60,288 KB
testcase_25 AC 55 ms
61,440 KB
testcase_26 AC 60 ms
63,488 KB
testcase_27 AC 69 ms
67,584 KB
testcase_28 AC 906 ms
118,952 KB
testcase_29 AC 344 ms
89,916 KB
testcase_30 AC 344 ms
90,360 KB
testcase_31 AC 299 ms
87,708 KB
testcase_32 AC 857 ms
114,632 KB
testcase_33 AC 41 ms
51,840 KB
testcase_34 AC 41 ms
51,968 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 42 ms
52,224 KB
testcase_37 AC 42 ms
52,224 KB
testcase_38 AC 42 ms
51,968 KB
testcase_39 AC 42 ms
52,480 KB
testcase_40 AC 41 ms
52,224 KB
testcase_41 AC 41 ms
52,224 KB
testcase_42 AC 43 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
LR = []
for i in range(N):
    L, R = map(int, input().split())
    LR.append((L, R))

D = []
for i in range(N):
    D.append((LR[i][0], i+N))
    D.append((LR[i][1], i))
    
D.sort(reverse=True)
M = 20
dp = [[-1] * N for i in range(M)]
nex = -1
for _, d in D:
    if d < N:
        dp[0][d] = nex
    else:
        d -= N
        if nex == -1 or LR[d][1] <= LR[nex][1]:
            nex = d
            
for i in range(1, M):
    for j in range(N):
        if dp[i-1][j] != -1:
            dp[i][j] = dp[i-1][dp[i-1][j]]
        
inf = 10 ** 18
ans = inf
for i in range(N):
    now = i
    for j in range(M):
        if ((K - 1) >> j) & 1:
            now = dp[j][now]
            if now == -1:
                break
            
    if now != -1:
        ans = min(ans, LR[now][1] - LR[i][0])
        
print(ans) if ans != inf else print(-1)
0