結果
問題 | No.2387 Yokan Factory |
ユーザー | timi |
提出日時 | 2024-02-14 13:07:50 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,268 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,584 KB |
実行使用メモリ | 267,752 KB |
最終ジャッジ日時 | 2024-09-28 18:52:02 |
合計ジャッジ時間 | 12,546 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,564 KB |
testcase_01 | AC | 38 ms
53,636 KB |
testcase_02 | AC | 35 ms
54,720 KB |
testcase_03 | AC | 38 ms
54,264 KB |
testcase_04 | AC | 35 ms
53,680 KB |
testcase_05 | AC | 37 ms
53,856 KB |
testcase_06 | AC | 38 ms
54,380 KB |
testcase_07 | AC | 38 ms
53,420 KB |
testcase_08 | AC | 36 ms
53,360 KB |
testcase_09 | AC | 37 ms
54,004 KB |
testcase_10 | AC | 36 ms
53,148 KB |
testcase_11 | AC | 35 ms
53,416 KB |
testcase_12 | AC | 37 ms
53,136 KB |
testcase_13 | AC | 37 ms
53,336 KB |
testcase_14 | AC | 35 ms
53,340 KB |
testcase_15 | AC | 3,370 ms
145,048 KB |
testcase_16 | AC | 1,202 ms
133,152 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
def main(): from sys import stdin, setrecursionlimit input = stdin.readline readline = stdin.readline import heapq def dijkstra(s,p): hq=[(0,s,0)] heapq.heapify(hq) # リストを優先度付きキューに変換 cost=[10**18+1]*N # 行ったことのないところはinf cost[s]=0 # 開始地点は0 while hq: c,v,pre=heapq.heappop(hq) if c>cost[v]: # コストが現在のコストよりも高ければスルー v:now u:nex continue for d,u,pp in E[v]: if p>pp: break tmp=d+cost[v] if tmp<cost[u]: cost[u]=tmp heapq.heappush(hq,(tmp,u,v)) return cost N,M,X=map(int,input().split()) E=[[] for _ in range(N)] D={} ma=0 for i in range(M): a,b,t,x=map(int,input().split()) a-=1;b-=1 ma=max(ma,x) E[a].append((t,b,x)) E[b].append((t,a,x)) for i in range(N): E[i].sort(key=lambda x:x[2],reverse=True) A=dijkstra(0,10**9) if A[-1]<=X: print(10**9) exit() A=dijkstra(0,0) if A[-1]>X: print(-1) exit() ok,ng=0,ma+1 while (ng-ok)>1: mid=(ok+ng)//2 A=dijkstra(0,mid) if A[-1]>X: ng=mid else: ok=mid print(ok) main()