結果

問題 No.1607 Kth Maximum Card
ユーザー あかしあみどりあかしあみどり
提出日時 2023-02-20 22:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,285 ms / 3,500 ms
コード長 2,018 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 258,200 KB
最終ジャッジ日時 2024-07-21 12:42:19
合計ジャッジ時間 30,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,896 KB
testcase_01 AC 34 ms
54,052 KB
testcase_02 AC 35 ms
52,688 KB
testcase_03 AC 35 ms
52,344 KB
testcase_04 AC 37 ms
52,528 KB
testcase_05 AC 35 ms
52,960 KB
testcase_06 AC 34 ms
53,192 KB
testcase_07 AC 34 ms
53,284 KB
testcase_08 AC 2,098 ms
154,660 KB
testcase_09 AC 1,369 ms
143,892 KB
testcase_10 AC 3,285 ms
172,868 KB
testcase_11 AC 223 ms
96,376 KB
testcase_12 AC 1,772 ms
142,820 KB
testcase_13 AC 191 ms
89,628 KB
testcase_14 AC 287 ms
93,072 KB
testcase_15 AC 1,144 ms
143,664 KB
testcase_16 AC 248 ms
91,444 KB
testcase_17 AC 111 ms
80,484 KB
testcase_18 AC 884 ms
127,800 KB
testcase_19 AC 504 ms
106,912 KB
testcase_20 AC 646 ms
112,940 KB
testcase_21 AC 707 ms
119,292 KB
testcase_22 AC 1,662 ms
171,504 KB
testcase_23 AC 1,584 ms
171,520 KB
testcase_24 AC 802 ms
102,984 KB
testcase_25 AC 381 ms
93,188 KB
testcase_26 AC 641 ms
96,316 KB
testcase_27 AC 845 ms
103,420 KB
testcase_28 AC 681 ms
98,512 KB
testcase_29 AC 1,813 ms
124,932 KB
testcase_30 AC 2,794 ms
152,400 KB
testcase_31 AC 1,670 ms
118,856 KB
testcase_32 AC 433 ms
227,012 KB
testcase_33 AC 375 ms
214,512 KB
testcase_34 AC 658 ms
257,880 KB
testcase_35 AC 510 ms
258,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

import sys
input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input_count = 0

input_count = 0
N,M,K = mi()
NODE = N
LOOP_NUM = M
maps = {i:[] for i in range(NODE)}
cost_dict = {}
for i in range(LOOP_NUM):
    a,b,c = mi()
    maps[a-1].append((b-1, c, i))
    maps[b-1].append((a-1,c, i))
# 以下の問題にてテスト済み
# https://atcoder.jp/contests/abc213/tasks/abc213_e
def zero_one_dfs(target, K):
    zero_deq = [0]
    count=0
    use_node = [0] * M

    while True:
        one_deq = []
        
        while zero_deq:
            node = zero_deq.pop()
                
            # 目的地に到達したら
            if node == N-1:
                if count < K:
                    return True

            # コスト0の時の移動パターン
            for next_node, cost, ind in maps[node]:
                if use_node[ind] == 0:
                    use_node[ind] = -1
                    if cost > target:
                        one_deq.append(next_node)
                    else:
                        zero_deq.append(next_node)

        count+=1
        zero_deq = one_deq[:]
        if count >= K:
            return False
def is_ok(arg):
    # 条件を満たすかどうか?問題ごとに定義
    # 初めてFalseからTrueになるTrueの地点を取得
    return zero_one_dfs(arg, K)

def meguru_bisect(ng, ok):
    '''
    初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す
    まずis_okを定義すべし
    ng ok は  とり得る最小の値-1 とり得る最大の値+1
    最大最小が逆の場合はよしなにひっくり返す
    '''
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
mins = meguru_bisect(-1, 2*10**5 + 1)
print(mins)
0