結果

問題 No.1 道のショートカット
ユーザー takakintakakin
提出日時 2020-04-11 22:38:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 219 ms / 5,000 ms
コード長 1,084 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-07-20 16:46:25
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 150 ms
19,200 KB
testcase_09 AC 93 ms
15,360 KB
testcase_10 AC 66 ms
13,184 KB
testcase_11 AC 98 ms
15,360 KB
testcase_12 AC 219 ms
22,144 KB
testcase_13 AC 198 ms
21,632 KB
testcase_14 AC 41 ms
11,776 KB
testcase_15 AC 35 ms
11,520 KB
testcase_16 AC 53 ms
12,928 KB
testcase_17 AC 34 ms
11,264 KB
testcase_18 AC 41 ms
11,904 KB
testcase_19 AC 49 ms
12,800 KB
testcase_20 AC 55 ms
12,672 KB
testcase_21 AC 61 ms
13,184 KB
testcase_22 AC 46 ms
12,160 KB
testcase_23 AC 183 ms
19,456 KB
testcase_24 AC 206 ms
21,120 KB
testcase_25 AC 82 ms
14,336 KB
testcase_26 AC 67 ms
13,440 KB
testcase_27 AC 165 ms
18,816 KB
testcase_28 AC 35 ms
11,008 KB
testcase_29 AC 53 ms
12,032 KB
testcase_30 AC 35 ms
11,008 KB
testcase_31 AC 45 ms
11,776 KB
testcase_32 AC 121 ms
16,896 KB
testcase_33 AC 89 ms
14,848 KB
testcase_34 AC 144 ms
17,408 KB
testcase_35 AC 35 ms
10,752 KB
testcase_36 AC 49 ms
11,904 KB
testcase_37 AC 36 ms
10,880 KB
testcase_38 AC 36 ms
11,136 KB
testcase_39 AC 51 ms
12,800 KB
testcase_40 AC 37 ms
11,136 KB
testcase_41 AC 34 ms
11,008 KB
testcase_42 AC 32 ms
10,752 KB
testcase_43 AC 37 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)

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