結果
問題 | No.3013 ハチマキ買い星人 |
ユーザー |
![]() |
提出日時 | 2025-02-15 11:41:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 774 bytes |
コンパイル時間 | 358 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 145,452 KB |
最終ジャッジ日時 | 2025-02-15 11:41:52 |
合計ジャッジ時間 | 21,898 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 28 WA * 17 |
ソースコード
from heapq import *N, M, P, Y = map(int, input().split())ABC = [list(map(int, input().split())) for _ in range(M)]DE = [list(map(int, input().split())) for _ in range(P)]E = [[] for _ in range(N)]for a, b, c in ABC:a -= 1b -= 1E[a].append((b, c))E[b].append((a, c))INF = 10 ** 16D = [INF] * N# 普通のダイクストラdef dijkstra():D[0] = 0q = [(0, 0)]while q:d, u = heappop(q)# 下のifでTLE解消することがあるif d > D[u]: continuefor i in E[u]:a, b = iif D[a] > D[u] + b:D[a] = D[u] + bheappush(q, (D[a], a))returndijkstra()ans = 0for d, e in DE:d -= 1ans = max(ans, (Y - D[d]) // e)print(ans)