結果

問題 No.2739 Time is money
ユーザー PNJPNJ
提出日時 2024-04-20 12:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,206 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 122,832 KB
最終ジャッジ日時 2024-10-12 08:07:09
合計ジャッジ時間 15,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,280 KB
testcase_01 AC 39 ms
53,604 KB
testcase_02 AC 244 ms
95,012 KB
testcase_03 AC 971 ms
112,996 KB
testcase_04 AC 236 ms
94,356 KB
testcase_05 AC 661 ms
101,860 KB
testcase_06 AC 809 ms
106,836 KB
testcase_07 AC 1,062 ms
120,112 KB
testcase_08 AC 1,130 ms
122,452 KB
testcase_09 AC 1,196 ms
122,596 KB
testcase_10 AC 444 ms
108,672 KB
testcase_11 AC 1,206 ms
122,832 KB
testcase_12 AC 403 ms
109,808 KB
testcase_13 AC 399 ms
109,700 KB
testcase_14 AC 375 ms
109,640 KB
testcase_15 AC 784 ms
121,044 KB
testcase_16 AC 824 ms
110,332 KB
testcase_17 AC 1,110 ms
121,724 KB
testcase_18 AC 1,147 ms
121,720 KB
testcase_19 AC 920 ms
117,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
inf = 1 << 61
def dijkstra(s, n, edge):
    dist = [inf]*n
    dist[s] = 0
    hq = [[0,s]]
    heapq.heapify(hq)
    while len(hq) > 0:
        d,i = heapq.heappop(hq)
        if dist[i] < d:
            continue
        for j,d_1 in edge[i]:
            if dist[j] > (dist[i] + d_1):
                dist[j] = dist[i] + d_1
                heapq.heappush(hq, [dist[j],j])
    return dist

N,M,X = map(int,input().split())
G = [[] for i in range(N)]
for i in range(M):
  u,v,c,t = map(int,input().split())
  d = c + t*X
  u -= 1
  v -= 1
  G[u].append((v,d))
  G[v].append((u,d))

dist = dijkstra(0,N,G)
if dist[N-1] == inf:
  print(-1)
  exit()
ans = dist[N-1] // X
if dist[N-1] % X:
  ans += 1
print(ans)
0