結果

問題 No.1812 Uribo Road
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-22 11:41:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 590 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 238,976 KB
最終ジャッジ日時 2024-11-22 11:41:42
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 232 ms
77,796 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 44 ms
52,608 KB
testcase_07 AC 51 ms
59,520 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 621 ms
84,100 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 198 ms
77,920 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
r=[-1]*(1<<k)
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]*(1<<k)*n
v[0*n+0]=0
q=[(0*n+0,0)]
while len(q)>0:
  sc,s=heappop(q)
  if sc>v[s]:
    continue
  sp,sy=divmod(s,n)
  for i,ty,tc in e[sy]:
    if r[i]!=-1:
      tp=sp|(1<<r[i])
    else:
      tp=sp
    t=tp*n+ty
    if v[t]>sc+tc:
      v[t]=sc+tc
      heappush(q,(v[t],t))
print(v[((1<<k)-1)*n+n-1])
0