結果

問題 No.1812 Uribo Road
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-22 11:37:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 582 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 1,118,980 KB
最終ジャッジ日時 2024-11-22 11:39:16
合計ジャッジ時間 80,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
498,696 KB
testcase_01 AC 43 ms
57,600 KB
testcase_02 AC 44 ms
61,160 KB
testcase_03 AC 251 ms
271,996 KB
testcase_04 AC 42 ms
354,204 KB
testcase_05 AC 44 ms
57,600 KB
testcase_06 AC 44 ms
205,356 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 237 ms
201,768 KB
testcase_12 TLE -
testcase_13 AC 676 ms
400,476 KB
testcase_14 AC 709 ms
400,768 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,310 ms
93,392 KB
testcase_24 AC 96 ms
73,984 KB
testcase_25 AC 328 ms
83,600 KB
testcase_26 AC 187 ms
78,340 KB
testcase_27 TLE -
testcase_28 AC 420 ms
86,312 KB
testcase_29 AC 44 ms
52,480 KB
testcase_30 AC 388 ms
79,832 KB
testcase_31 TLE -
testcase_32 AC 218 ms
78,024 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
r=[-1]*m
for i,v in enumerate(list(map(int,input().split()))):
  r[v-1]=i
e=[[] for i in range(n)]
for i in range(m):
  a,b,c=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[(i,b,c)]
  e[b]+=[(i,a,c)]
from heapq import heappush,heappop
X=10**10
v=[[X]*n for i in range(1<<k)]
v[0][0]=0
q=[(0,0,0)]
while len(q)>0:
  sc,sp,sy=heappop(q)
  if sc>v[sp][sy]:
    continue
  for i,ty,tc in e[sy]:
    if r[i]!=-1:
      tp=sp|(1<<r[i])
    else:
      tp=sp
    if v[tp][ty]>sc+tc:
      v[tp][ty]=sc+tc
      heappush(q,(v[tp][ty],tp,ty))
print(v[-1][-1])
0