結果

問題 No.2387 Yokan Factory
ユーザー hato336hato336
提出日時 2023-07-21 21:50:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,886 ms / 5,000 ms
コード長 1,148 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 189,312 KB
最終ジャッジ日時 2024-09-21 23:19:58
合計ジャッジ時間 30,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
85,760 KB
testcase_01 AC 143 ms
85,632 KB
testcase_02 AC 143 ms
85,760 KB
testcase_03 AC 144 ms
85,888 KB
testcase_04 AC 142 ms
85,760 KB
testcase_05 AC 143 ms
85,888 KB
testcase_06 AC 145 ms
85,760 KB
testcase_07 AC 142 ms
85,632 KB
testcase_08 AC 144 ms
85,888 KB
testcase_09 AC 143 ms
85,760 KB
testcase_10 AC 141 ms
85,888 KB
testcase_11 AC 142 ms
85,760 KB
testcase_12 AC 155 ms
85,760 KB
testcase_13 AC 158 ms
85,632 KB
testcase_14 AC 160 ms
85,632 KB
testcase_15 AC 1,261 ms
138,240 KB
testcase_16 AC 741 ms
134,016 KB
testcase_17 AC 1,800 ms
189,312 KB
testcase_18 AC 2,152 ms
136,640 KB
testcase_19 AC 2,066 ms
127,488 KB
testcase_20 AC 1,529 ms
116,888 KB
testcase_21 AC 2,886 ms
143,488 KB
testcase_22 AC 1,478 ms
115,424 KB
testcase_23 AC 2,218 ms
130,860 KB
testcase_24 AC 1,012 ms
112,456 KB
testcase_25 AC 1,405 ms
111,704 KB
testcase_26 AC 2,610 ms
139,088 KB
testcase_27 AC 2,855 ms
145,696 KB
testcase_28 AC 224 ms
91,136 KB
testcase_29 AC 236 ms
91,328 KB
testcase_30 AC 216 ms
91,264 KB
testcase_31 AC 211 ms
90,880 KB
testcase_32 AC 204 ms
90,240 KB
testcase_33 AC 192 ms
89,984 KB
testcase_34 AC 232 ms
91,392 KB
testcase_35 AC 229 ms
91,008 KB
testcase_36 AC 191 ms
90,112 KB
testcase_37 AC 142 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
n,m,X = map(int,input().split())
edge = [[] for i in range(n)]
for i in range(m):
    u,v,a,b = map(int,input().split())
    u,v = u-1,v-1
    edge[u].append((v,a,b))
    edge[v].append((u,a,b))
#for i in range(n):
#    alist.append(list(map(int,input().split())))

class nibutan():
    def __init__(self):
        self.max = 10**9+10
    def __len__(self):
        return self.max
    def __getitem__(self,x):
        d = []
        d.append((0,0))
        dist = [10**18] * n
        dist[0] = 0
        while d:
            _,now = heapq.heappop(d)
            if _ > dist[now]:
                continue
            for i in edge[now]:
                if i[2] < x:
                    continue
                if dist[now] + i[1] < dist[i[0]]:
                    dist[i[0]] = dist[now] + i[1]
                    heapq.heappush(d,(dist[i[0]],i[0]))
        return 1 if dist[-1] > X else 0
    
print(bisect.bisect_left(nibutan(),1)-1)
0