結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,880 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 44 ms
53,888 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 TLE -
testcase_09 AC 2,872 ms
307,736 KB
testcase_10 TLE -
testcase_11 AC 513 ms
151,808 KB
testcase_12 AC 2,902 ms
301,960 KB
testcase_13 AC 355 ms
115,724 KB
testcase_14 AC 460 ms
139,904 KB
testcase_15 AC 2,355 ms
291,176 KB
testcase_16 AC 355 ms
118,656 KB
testcase_17 AC 185 ms
83,696 KB
testcase_18 AC 1,475 ms
292,864 KB
testcase_19 AC 806 ms
225,708 KB
testcase_20 AC 1,297 ms
283,544 KB
testcase_21 AC 1,305 ms
288,480 KB
testcase_22 AC 3,000 ms
368,916 KB
testcase_23 AC 3,103 ms
368,624 KB
testcase_24 AC 1,019 ms
237,304 KB
testcase_25 AC 521 ms
146,432 KB
testcase_26 AC 724 ms
183,040 KB
testcase_27 AC 1,078 ms
256,724 KB
testcase_28 AC 795 ms
199,292 KB
testcase_29 AC 2,188 ms
279,052 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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
#edge[a].append((b,cost))
def bfs(st,dis,edge):
    q = deque()
    dis[st] = 0
    q.append((0,st))
    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))
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)]
    bfs(0,dis,edge)
    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