結果

問題 No.1607 Kth Maximum Card
ユーザー horitaka1999horitaka1999
提出日時 2021-12-11 00:39:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,119 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 376,484 KB
最終ジャッジ日時 2024-07-18 21:30:14
合計ジャッジ時間 42,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 42 ms
54,016 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 38 ms
53,760 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 38 ms
54,016 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 3,122 ms
376,484 KB
testcase_09 AC 2,381 ms
309,268 KB
testcase_10 AC 3,049 ms
375,768 KB
testcase_11 AC 450 ms
152,064 KB
testcase_12 AC 2,487 ms
301,968 KB
testcase_13 AC 331 ms
115,156 KB
testcase_14 AC 442 ms
145,512 KB
testcase_15 AC 1,920 ms
290,276 KB
testcase_16 AC 326 ms
117,860 KB
testcase_17 AC 174 ms
83,272 KB
testcase_18 AC 1,251 ms
293,644 KB
testcase_19 AC 714 ms
225,024 KB
testcase_20 AC 1,067 ms
284,220 KB
testcase_21 AC 1,100 ms
288,912 KB
testcase_22 AC 2,786 ms
367,892 KB
testcase_23 AC 2,550 ms
368,384 KB
testcase_24 AC 835 ms
236,660 KB
testcase_25 AC 495 ms
145,200 KB
testcase_26 AC 634 ms
183,420 KB
testcase_27 AC 946 ms
255,848 KB
testcase_28 AC 717 ms
198,288 KB
testcase_29 AC 1,826 ms
279,400 KB
testcase_30 TLE -
testcase_31 AC 1,770 ms
288,112 KB
testcase_32 AC 1,130 ms
283,656 KB
testcase_33 AC 1,185 ms
284,548 KB
testcase_34 AC 1,220 ms
276,476 KB
testcase_35 AC 1,280 ms
283,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
board = []
for _ in range(M):
    u,v,c = map(int,input().split())
    u-=1
    v-=1
    board.append((u,v,c))
from collections import deque
def is_ok(x):
    edge = [[] for _ in range(N)]
    for i in range(M):
        u,v,c = board[i]
        if c > x:
            edge[u].append((v,1))
            edge[v].append((u,1))
        else:
            edge[u].append((v,0))
            edge[v].append((u,0))
    INF = float('inf')
    dis = [INF for _ in range(N)]
    q = deque()
    dis[0] = 0
    q.append((0,0))
    while q:
        t,now = q.popleft()
        if t > dis[now]:
            continue
        for next,cost in edge[now]:
            if dis[next] > cost + dis[now]:
                dis[next] = cost + dis[now]
                if cost == 0:
                    q.appendleft((dis[next],next))
                else:
                    q.append((dis[next],next))
    if dis[N-1] <= K -1:
        return True
    else:
        return False

ok = 2 * 10 ** 5
ng = -1
while ok - ng > 1:
    x = (ng+ok)//2
    if is_ok(x):
        ok = x
    else:
        ng = x
print(ok)
    
0