結果

問題 No.1 道のショートカット
ユーザー takakintakakin
提出日時 2020-04-11 22:35:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,130 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-07-08 05:21:55
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
11,008 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 251 ms
27,136 KB
testcase_09 AC 171 ms
20,096 KB
testcase_10 AC 100 ms
15,872 KB
testcase_11 AC 164 ms
20,096 KB
testcase_12 AC 405 ms
33,664 KB
testcase_13 AC 385 ms
33,024 KB
testcase_14 AC 45 ms
12,288 KB
testcase_15 AC 30 ms
11,264 KB
testcase_16 WA -
testcase_17 AC 28 ms
11,264 KB
testcase_18 AC 44 ms
12,416 KB
testcase_19 AC 71 ms
14,080 KB
testcase_20 AC 77 ms
14,464 KB
testcase_21 WA -
testcase_22 AC 63 ms
13,568 KB
testcase_23 AC 376 ms
31,744 KB
testcase_24 AC 479 ms
36,224 KB
testcase_25 AC 156 ms
19,328 KB
testcase_26 AC 116 ms
16,384 KB
testcase_27 AC 301 ms
27,776 KB
testcase_28 AC 32 ms
11,264 KB
testcase_29 AC 64 ms
13,440 KB
testcase_30 AC 34 ms
11,136 KB
testcase_31 AC 50 ms
12,800 KB
testcase_32 AC 189 ms
22,528 KB
testcase_33 AC 136 ms
18,816 KB
testcase_34 AC 248 ms
24,832 KB
testcase_35 AC 31 ms
11,136 KB
testcase_36 AC 57 ms
13,184 KB
testcase_37 WA -
testcase_38 AC 30 ms
11,520 KB
testcase_39 WA -
testcase_40 AC 33 ms
11,392 KB
testcase_41 AC 27 ms
11,136 KB
testcase_42 AC 26 ms
11,008 KB
testcase_43 AC 29 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
c=int(input())
v=int(input())
S=[int(i) for i in input().split()]
T=[int(i) for i in input().split()]
Y=[int(i) for i in input().split()]
M=[int(i) for i in input().split()]
nc=n*(c+1)
edge = [[] for i in range(nc)]
for i in range(v):
  s,t,y,m=S[i],T[i],Y[i],M[i]
  for j in range(y,c+1):
    edge[s-1+j*n].append(m*10**6+t-1+(j-y)*n)
    edge[t-1+j*n].append(m*10**6+s-1+(j-y)*n)

import heapq
def dijkstra_heap(s):
  d=[float("inf")]*nc
  used=[True]*nc
  d[s]=0
  used[s]=False
  edgelist=[]
  for e in edge[s]:
    heapq.heappush(edgelist,e)
  while edgelist:
    minedge=heapq.heappop(edgelist)
    minedge_cost=minedge//(10**6)
    minedge_v=minedge%(10**6)
    if not used[minedge_v]:
      continue
    d[minedge_v] = minedge_cost
    used[minedge_v] = False
    for e in edge[minedge_v]:
      e_cost=e//(10**6)
      e_v=e%(10**6)
      if used[e_v]:
        heapq.heappush(edgelist,e+minedge_cost*10**6)
  return d
D=dijkstra_heap(n*c)
ans=D[n-1]
for i in range(c):
  ans=min(ans,D[n-1+(i+1)*n])
if ans==float("inf"):
  print(-1)
else:
  print(ans)
0