結果

問題 No.1607 Kth Maximum Card
ユーザー あかしあみどりあかしあみどり
提出日時 2023-02-20 22:26:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,731 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 276,936 KB
最終ジャッジ日時 2024-07-21 12:30:19
合計ジャッジ時間 13,801 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,624 KB
testcase_01 AC 45 ms
55,108 KB
testcase_02 AC 43 ms
55,048 KB
testcase_03 AC 43 ms
54,944 KB
testcase_04 AC 43 ms
54,200 KB
testcase_05 AC 43 ms
54,120 KB
testcase_06 AC 43 ms
54,988 KB
testcase_07 AC 45 ms
55,040 KB
testcase_08 AC 2,715 ms
250,772 KB
testcase_09 AC 1,889 ms
233,416 KB
testcase_10 TLE -
testcase_11 AC 441 ms
111,592 KB
testcase_12 AC 2,467 ms
247,116 KB
testcase_13 AC 379 ms
106,676 KB
testcase_14 AC 537 ms
125,024 KB
testcase_15 AC 1,896 ms
246,748 KB
testcase_16 AC 454 ms
109,020 KB
testcase_17 AC 180 ms
89,260 KB
testcase_18 AC 1,459 ms
217,240 KB
testcase_19 AC 866 ms
159,432 KB
testcase_20 AC 1,115 ms
171,008 KB
testcase_21 AC 1,237 ms
179,352 KB
testcase_22 AC 2,894 ms
276,936 KB
testcase_23 AC 2,993 ms
275,220 KB
testcase_24 AC 1,349 ms
152,368 KB
testcase_25 AC 726 ms
127,680 KB
testcase_26 AC 1,099 ms
134,548 KB
testcase_27 AC 1,385 ms
148,604 KB
testcase_28 AC 1,131 ms
138,116 KB
testcase_29 AC 2,649 ms
210,236 KB
testcase_30 TLE -
testcase_31 AC 2,315 ms
184,476 KB
testcase_32 AC 712 ms
260,876 KB
testcase_33 AC 640 ms
260,716 KB
testcase_34 AC 1,212 ms
261,104 KB
testcase_35 AC 915 ms
260,032 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))
# # K 未満の時
# from collections import deque
# reached = [0] * N ## 1つ前のノードを持たせると微妙に遅くなるのでやめよう
# deq = deque([[0,0]])
# mins = float("inf")
# while deq:
#     node, count = deq.pop() #BFS

#     if node == N-1:
#         if count < K :
#             mins = 0
#             break

#     reached[node] = -1

#     for next_node, cost in maps[node]:
#         # 訪問済み判定
#         if reached[next_node] == -1:
#             continue
        
#         if count+1 <= K:
#             mins = min(mins, cost)
#         reached[next_node] = -1
#         deq.append([next_node, count+1])

# 以下の問題にてテスト済み
# https://atcoder.jp/contests/abc213/tasks/abc213_e
from collections import deque
def zero_one_dfs(target, K):
    zero_deq = deque([0])
    count=0
    use_node = set([])

    while True:
        one_deq = deque([])
        
        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 ind not in use_node:
                    use_node.add(ind)
                    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
# if mins != 0:
    
mins = meguru_bisect(-1, 2*10**5 + 1)
print(mins)
0