結果
| 問題 | No.3013 ハチマキ買い星人 |
| コンテスト | |
| ユーザー |
まぬお
|
| 提出日時 | 2025-01-25 23:04:24 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 673 bytes |
| コンパイル時間 | 346 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 111,488 KB |
| 最終ジャッジ日時 | 2025-01-25 23:04:49 |
| 合計ジャッジ時間 | 16,312 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 11 WA * 34 |
ソースコード
from collections import deque, defaultdict
from heapq import heappop, heappush
INF = 1<<60
N, M, P, Y = map(int, input().split())
E = [list() for _ in range(N)]
for _ in range(M):
a, b, c = map(int, input().split())
a, b = a-1, b-1
E[a].append((b, c))
E[b].append((a, c))
vis = [0]*N
dist = [INF]*N
q = [(0, 0)]
dist[0] = 0
while q:
cost, i = heappop(q)
if vis[i]: continue
vis[i] = 1
for j, c in E[i]:
if vis[j] <= cost+c: continue
dist[j] = cost+c
heappush(q, (cost+c, j))
ans = 0
for _ in range(P):
d, e = map(int, input().split())
d = d-1
money = Y-dist[d]
ans = max(ans, money//e)
print(ans)
まぬお