結果

問題 No.2387 Yokan Factory
ユーザー nikoro256nikoro256
提出日時 2023-07-21 22:27:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 873 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,580 KB
最終ジャッジ日時 2024-09-21 23:56:53
合計ジャッジ時間 33,149 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 3,334 ms
50,308 KB
testcase_16 AC 1,974 ms
52,776 KB
testcase_17 AC 4,798 ms
54,580 KB
testcase_18 AC 4,105 ms
48,008 KB
testcase_19 AC 3,617 ms
36,000 KB
testcase_20 AC 2,406 ms
33,468 KB
testcase_21 TLE -
testcase_22 AC 2,390 ms
31,808 KB
testcase_23 AC 3,979 ms
36,184 KB
testcase_24 AC 1,415 ms
33,200 KB
testcase_25 AC 2,101 ms
26,128 KB
testcase_26 AC 4,760 ms
39,920 KB
testcase_27 TLE -
testcase_28 AC 44 ms
11,136 KB
testcase_29 AC 51 ms
11,520 KB
testcase_30 AC 46 ms
11,392 KB
testcase_31 AC 42 ms
11,008 KB
testcase_32 AC 36 ms
10,880 KB
testcase_33 AC 34 ms
10,880 KB
testcase_34 AC 49 ms
11,264 KB
testcase_35 AC 45 ms
11,136 KB
testcase_36 AC 35 ms
10,880 KB
testcase_37 AC 29 ms
10,880 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