結果

問題 No.2387 Yokan Factory
ユーザー komkompikomkompi
提出日時 2023-07-22 18:07:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,025 ms / 5,000 ms
コード長 902 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 266,060 KB
最終ジャッジ日時 2024-09-22 17:40:00
合計ジャッジ時間 29,151 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,228 KB
testcase_01 AC 38 ms
53,480 KB
testcase_02 AC 40 ms
53,224 KB
testcase_03 AC 38 ms
53,092 KB
testcase_04 AC 37 ms
53,564 KB
testcase_05 AC 39 ms
54,020 KB
testcase_06 AC 39 ms
53,420 KB
testcase_07 AC 39 ms
53,896 KB
testcase_08 AC 39 ms
53,572 KB
testcase_09 AC 39 ms
54,652 KB
testcase_10 AC 40 ms
54,092 KB
testcase_11 AC 39 ms
53,080 KB
testcase_12 AC 39 ms
52,824 KB
testcase_13 AC 40 ms
53,840 KB
testcase_14 AC 40 ms
54,504 KB
testcase_15 AC 1,601 ms
159,884 KB
testcase_16 AC 645 ms
129,164 KB
testcase_17 AC 2,533 ms
266,060 KB
testcase_18 AC 2,930 ms
205,052 KB
testcase_19 AC 1,962 ms
171,916 KB
testcase_20 AC 954 ms
126,044 KB
testcase_21 AC 2,676 ms
182,832 KB
testcase_22 AC 1,066 ms
123,468 KB
testcase_23 AC 3,489 ms
206,328 KB
testcase_24 AC 1,030 ms
128,664 KB
testcase_25 AC 1,393 ms
141,168 KB
testcase_26 AC 4,025 ms
234,844 KB
testcase_27 AC 1,046 ms
157,160 KB
testcase_28 AC 112 ms
77,384 KB
testcase_29 AC 141 ms
77,916 KB
testcase_30 AC 156 ms
78,080 KB
testcase_31 AC 150 ms
77,312 KB
testcase_32 AC 109 ms
76,324 KB
testcase_33 AC 121 ms
76,656 KB
testcase_34 AC 169 ms
78,080 KB
testcase_35 AC 150 ms
77,996 KB
testcase_36 AC 78 ms
72,960 KB
testcase_37 AC 42 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import heapq as hq

def dijkstra(edges,start,size):
    n_node=len(edges)
    costs=[float("inf") for i in range(n_node)]
    
    
    queue=[(0,start)]
    
    while queue:
        cost,now=hq.heappop(queue)
        if costs[now]>cost:
            costs[now]=cost
            if now==N-1:
                break
            
            for n_cost,width,nxt in edges[now]:
                if width>=size:
                    hq.heappush(queue,(cost+n_cost,nxt))
 
    return costs[:]

N,M,X=map(int,input().split())

edges=[[] for i in range(N)]

for _ in range(M):
    u,v,a,b=map(int,input().split())
    edges[u-1].append((a,b,v-1))
    edges[v-1].append((a,b,u-1))
    

high=10**9+1
low=-1

while high-low>1:
    middle=(high+low)//2
    
    costs=dijkstra(edges,0,middle)
    
    if costs[-1]<=X:
        low=middle
    else:
        high=middle


print(low)
0