結果

問題 No.1607 Kth Maximum Card
ユーザー tamatotamato
提出日時 2021-07-16 21:51:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,190 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 379,972 KB
最終ジャッジ日時 2024-07-06 08:56:04
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,240 KB
testcase_01 AC 41 ms
54,692 KB
testcase_02 AC 41 ms
55,480 KB
testcase_03 AC 42 ms
54,384 KB
testcase_04 AC 42 ms
54,308 KB
testcase_05 AC 42 ms
54,532 KB
testcase_06 AC 41 ms
54,756 KB
testcase_07 AC 41 ms
55,200 KB
testcase_08 TLE -
testcase_09 AC 3,083 ms
306,400 KB
testcase_10 TLE -
testcase_11 AC 471 ms
147,980 KB
testcase_12 AC 3,181 ms
300,504 KB
testcase_13 AC 343 ms
122,600 KB
testcase_14 AC 431 ms
144,152 KB
testcase_15 AC 2,541 ms
289,700 KB
testcase_16 AC 321 ms
117,296 KB
testcase_17 AC 146 ms
83,344 KB
testcase_18 AC 1,535 ms
293,280 KB
testcase_19 AC 805 ms
219,040 KB
testcase_20 AC 1,143 ms
290,796 KB
testcase_21 AC 1,450 ms
286,932 KB
testcase_22 AC 3,156 ms
379,864 KB
testcase_23 AC 3,215 ms
379,972 KB
testcase_24 AC 1,051 ms
237,808 KB
testcase_25 AC 499 ms
147,072 KB
testcase_26 AC 729 ms
182,036 KB
testcase_27 AC 1,157 ms
251,836 KB
testcase_28 AC 820 ms
200,848 KB
testcase_29 AC 2,476 ms
277,776 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
L = 2*10**5


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    N, M, K = map(int, input().split())
    ABC = []
    for _ in range(M):
        ABC.append(tuple(map(int, input().split())))

    ok = L+1
    ng = -1
    mid = (ok + ng) // 2
    while ok - ng > 1:
        adj = [[] for _ in range(N+1)]
        for a, b, c in ABC:
            if c > mid:
                adj[a].append((b, 1))
                adj[b].append((a, 1))
            else:
                adj[a].append((b, 0))
                adj[b].append((a, 0))

        que = deque()
        que.append((1, 0))
        seen = [-1] * (N+1)
        while que:
            v, d = que.popleft()
            if seen[v] != -1:
                continue
            seen[v] = d
            for u, c in adj[v]:
                if seen[u] == -1:
                    if c:
                        que.append((u, d+1))
                    else:
                        que.appendleft((u, d))
        if seen[N] < K:
            ok = mid
        else:
            ng = mid
        mid = (ok + ng) // 2
    print(ok)


if __name__ == '__main__':
    main()
0