結果

問題 No.1607 Kth Maximum Card
ユーザー DrDrpilotDrDrpilot
提出日時 2022-05-09 18:28:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,747 ms / 3,500 ms
コード長 787 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 154,152 KB
最終ジャッジ日時 2024-07-16 16:26:36
合計ジャッジ時間 20,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,012 KB
testcase_01 AC 39 ms
54,704 KB
testcase_02 AC 40 ms
54,420 KB
testcase_03 AC 40 ms
54,408 KB
testcase_04 AC 39 ms
55,556 KB
testcase_05 AC 42 ms
55,500 KB
testcase_06 AC 40 ms
54,124 KB
testcase_07 AC 40 ms
55,020 KB
testcase_08 AC 1,403 ms
139,552 KB
testcase_09 AC 751 ms
124,424 KB
testcase_10 AC 1,737 ms
154,152 KB
testcase_11 AC 206 ms
92,548 KB
testcase_12 AC 1,074 ms
127,144 KB
testcase_13 AC 250 ms
86,036 KB
testcase_14 AC 272 ms
88,260 KB
testcase_15 AC 894 ms
119,456 KB
testcase_16 AC 211 ms
85,844 KB
testcase_17 AC 168 ms
79,272 KB
testcase_18 AC 632 ms
104,944 KB
testcase_19 AC 354 ms
92,892 KB
testcase_20 AC 514 ms
97,168 KB
testcase_21 AC 581 ms
99,644 KB
testcase_22 AC 871 ms
138,676 KB
testcase_23 AC 976 ms
138,416 KB
testcase_24 AC 445 ms
93,656 KB
testcase_25 AC 305 ms
88,992 KB
testcase_26 AC 354 ms
90,740 KB
testcase_27 AC 499 ms
94,616 KB
testcase_28 AC 419 ms
92,364 KB
testcase_29 AC 906 ms
112,464 KB
testcase_30 AC 1,747 ms
138,024 KB
testcase_31 AC 826 ms
109,260 KB
testcase_32 AC 283 ms
100,148 KB
testcase_33 AC 275 ms
100,104 KB
testcase_34 AC 316 ms
99,992 KB
testcase_35 AC 324 ms
99,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
from collections import deque
g=[[] for _ in range(n)]
for _ in range(m):
    a,b,c=map(int,input().split())
    g[a-1].append((b-1,c))
    g[b-1].append((a-1,c))
def bfs(x):
    dst=[float('inf')]*n
    dst[0]=0
    q=deque()
    q.append((0,0))
    while q:
        now,d=q.popleft()
        if now==n-1:break
        if dst[now]<d:continue
        for to,num in g[now]:
            if num>x:
                if dst[to]>d+1:
                    dst[to]=d+1
                    q.append((to,d+1))
            else:
                if dst[to]>d:
                    dst[to]=d
                    q.appendleft((to,d))
    return dst[n-1]
ok=2*10**5
ng=-1
while ok-ng>1:
    mid=(ok+ng)//2
    if bfs(mid)<k:
        ok=mid
    else:
        ng=mid
print(ok)
0