結果
問題 | No.2387 Yokan Factory |
ユーザー | えなじ~🔋▶️ |
提出日時 | 2023-07-21 21:52:51 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,228 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 285,660 KB |
最終ジャッジ日時 | 2024-09-21 23:23:36 |
合計ジャッジ時間 | 31,010 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
52,608 KB |
testcase_01 | AC | 47 ms
52,864 KB |
testcase_02 | AC | 49 ms
52,608 KB |
testcase_03 | AC | 45 ms
52,736 KB |
testcase_04 | AC | 44 ms
52,608 KB |
testcase_05 | AC | 49 ms
52,736 KB |
testcase_06 | AC | 45 ms
52,992 KB |
testcase_07 | AC | 45 ms
52,864 KB |
testcase_08 | AC | 45 ms
52,992 KB |
testcase_09 | AC | 47 ms
52,864 KB |
testcase_10 | AC | 45 ms
52,736 KB |
testcase_11 | AC | 44 ms
52,736 KB |
testcase_12 | AC | 45 ms
52,480 KB |
testcase_13 | AC | 45 ms
52,736 KB |
testcase_14 | AC | 50 ms
52,608 KB |
testcase_15 | AC | 3,244 ms
274,064 KB |
testcase_16 | AC | 2,341 ms
275,160 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 4,856 ms
273,044 KB |
testcase_19 | AC | 4,417 ms
271,364 KB |
testcase_20 | AC | 2,993 ms
264,512 KB |
testcase_21 | TLE | - |
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 | -- | - |
ソースコード
import heapq N, M, X = map(int, input().split()) adj_list = [] for _ in range(M): u,v,a,b = map(int, input().split()) adj_list.append([u,v,a,b]) small = -1 large = 10**9 + 1 while(large-small>1): middle = (large + small)//2 #print(large, middle, small) # 大きさmiddleのようかんをX分以内に輸送できるか? adj = [[] for _ in range(N)] for u,v,a,b in adj_list: if middle <= b: adj[u-1].append((v-1, a)) adj[v-1].append((u-1, a)) new_adj = [] for l in adj: p = {} for v,a in l: if v in p.keys(): p[v] = min(p[v], a) else: p[v] = a new_adj.append([(v,p[v]) for v in p.keys()]) adj = new_adj times = [-1 for _ in range(N)] q = [(0, 0)] heapq.heapify(q) #print(adj) while(len(q)>0): time, node = heapq.heappop(q) if times[node]==-1: times[node] = time for v, d in adj[node]: heapq.heappush(q, (time+d, v)) #print(times) if times[N-1]==-1 or times[N-1]>X: #運べなかった large = middle else: #運べた small = middle print(small)