結果

問題 No.2387 Yokan Factory
ユーザー nikoro256nikoro256
提出日時 2023-07-21 22:29:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 872 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 266,720 KB
最終ジャッジ日時 2024-09-21 23:58:55
合計ジャッジ時間 47,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,864 KB
testcase_01 AC 50 ms
52,864 KB
testcase_02 AC 50 ms
52,480 KB
testcase_03 AC 46 ms
53,120 KB
testcase_04 AC 46 ms
52,608 KB
testcase_05 AC 46 ms
52,352 KB
testcase_06 AC 43 ms
52,608 KB
testcase_07 AC 41 ms
52,992 KB
testcase_08 AC 41 ms
52,864 KB
testcase_09 AC 44 ms
52,992 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 40 ms
52,992 KB
testcase_12 AC 41 ms
52,992 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 AC 41 ms
52,864 KB
testcase_15 AC 3,533 ms
150,420 KB
testcase_16 AC 1,403 ms
148,480 KB
testcase_17 TLE -
testcase_18 AC 3,764 ms
167,008 KB
testcase_19 AC 3,259 ms
154,112 KB
testcase_20 AC 2,441 ms
125,696 KB
testcase_21 TLE -
testcase_22 AC 2,329 ms
122,368 KB
testcase_23 AC 3,655 ms
161,664 KB
testcase_24 AC 1,248 ms
110,848 KB
testcase_25 AC 2,162 ms
119,868 KB
testcase_26 AC 4,275 ms
181,856 KB
testcase_27 TLE -
testcase_28 AC 107 ms
76,672 KB
testcase_29 AC 129 ms
76,672 KB
testcase_30 AC 125 ms
76,820 KB
testcase_31 AC 116 ms
76,768 KB
testcase_32 AC 96 ms
76,160 KB
testcase_33 AC 97 ms
76,032 KB
testcase_34 AC 125 ms
77,056 KB
testcase_35 AC 110 ms
76,800 KB
testcase_36 AC 78 ms
74,624 KB
testcase_37 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
def daiku(s,num):
    hq=[]
    heapq.heappush(hq,[0,s])
    high=[10**14+1 for _ in range(N)]
    use=[False for _ in range(N)]
    while len(hq)!=0:
        h,p=heapq.heappop(hq)
        if not use[p]:
            use[p]=True
            for e,c,m in edge[p]:
                if m>=num and high[e]>h+c:
                    high[e]=h+c
                    heapq.heappush(hq,[h+c,e])
    return high[-1]

def nibun():
    left,right=-1,10**9+1
    while right-left>1:
        mid=(right+left)//2
        dist=daiku(0,mid)
        if dist!=-1 and dist<=X:
            left=mid
        else:
            right=mid
    return left

import sys
input=sys.stdin.readline
N,M,X=map(int,input().split())
edge=[[] for _ in range(N)]
for _ in range(M):
    u,v,a,b=map(int,input().split())
    edge[u-1].append([v-1,a,b])
    edge[v-1].append([u-1,a,b])
print(nibun())
0