結果

問題 No.1607 Kth Maximum Card
ユーザー tamatotamato
提出日時 2021-07-16 22:15:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,586 ms / 3,500 ms
コード長 1,341 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 189,264 KB
最終ジャッジ日時 2024-07-06 09:36:09
合計ジャッジ時間 24,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,132 KB
testcase_01 AC 41 ms
54,268 KB
testcase_02 AC 41 ms
54,816 KB
testcase_03 AC 41 ms
54,380 KB
testcase_04 AC 41 ms
54,728 KB
testcase_05 AC 42 ms
54,388 KB
testcase_06 AC 42 ms
54,544 KB
testcase_07 AC 41 ms
56,092 KB
testcase_08 AC 1,493 ms
162,536 KB
testcase_09 AC 868 ms
142,004 KB
testcase_10 AC 1,780 ms
174,372 KB
testcase_11 AC 205 ms
94,996 KB
testcase_12 AC 1,558 ms
156,944 KB
testcase_13 AC 249 ms
88,680 KB
testcase_14 AC 306 ms
93,804 KB
testcase_15 AC 1,162 ms
152,552 KB
testcase_16 AC 243 ms
91,092 KB
testcase_17 AC 140 ms
80,040 KB
testcase_18 AC 723 ms
121,504 KB
testcase_19 AC 468 ms
104,136 KB
testcase_20 AC 580 ms
109,888 KB
testcase_21 AC 666 ms
115,960 KB
testcase_22 AC 1,150 ms
169,928 KB
testcase_23 AC 1,182 ms
167,320 KB
testcase_24 AC 607 ms
101,036 KB
testcase_25 AC 345 ms
92,460 KB
testcase_26 AC 470 ms
95,548 KB
testcase_27 AC 685 ms
102,256 KB
testcase_28 AC 513 ms
97,148 KB
testcase_29 AC 1,280 ms
127,416 KB
testcase_30 AC 2,586 ms
166,988 KB
testcase_31 AC 1,264 ms
122,368 KB
testcase_32 AC 380 ms
132,108 KB
testcase_33 AC 406 ms
139,208 KB
testcase_34 AC 633 ms
189,264 KB
testcase_35 AC 599 ms
182,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
L = 2*10**5
LL = L+1


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

    N, M, K = map(int, input().split())
    ABC = []
    adj = [[] for _ in range(N+1)]
    C = []
    for i in range(M):
        a, b, c = map(int, input().split())
        ABC.append((a, b, c))
        adj[a].append((b, i))
        adj[b].append((a, i))
        C.append(c)

    ok = L
    ng = -1
    mid = (ok + ng) // 2
    C01 = [0] * M
    while ok - ng > 1:
        for i, c in enumerate(C):
            if c > mid:
                C01[i] = 1
            else:
                C01[i] = 0

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


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