結果

問題 No.1812 Uribo Road
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-22 11:33:28
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 779 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 919,936 KB
最終ジャッジ日時 2024-11-22 11:34:55
合計ジャッジ時間 74,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
59,560 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 398 ms
102,436 KB
testcase_04 MLE -
testcase_05 AC 45 ms
52,864 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 720 ms
114,948 KB
testcase_09 AC 1,189 ms
150,204 KB
testcase_10 AC 540 ms
107,664 KB
testcase_11 AC 315 ms
90,596 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 2,284 ms
206,852 KB
testcase_24 AC 98 ms
73,984 KB
testcase_25 AC 343 ms
86,884 KB
testcase_26 AC 281 ms
97,904 KB
testcase_27 TLE -
testcase_28 AC 664 ms
101,176 KB
testcase_29 AC 55 ms
52,864 KB
testcase_30 AC 1,647 ms
314,368 KB
testcase_31 TLE -
testcase_32 AC 661 ms
117,732 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
r=list(map(int,input().split()))
for i in range(k):
  r[i]-=1
e=[[[] for j in range(n)] for i in range(1<<k)]
for i in range(m):
  a,b,c=map(int,input().split())
  a-=1
  b-=1
  for j in range(1<<k):
    if i not in r:
      e[j][a]+=[(j,b,c)]
      e[j][b]+=[(j,a,c)]
    else:
      p=r.index(i)
      if (j>>p)&1==0:
        e[j][a]+=[(j|(1<<p),b,c)]
        e[j][b]+=[(j|(1<<p),a,c)]
      else:
        e[j][a]+=[(j,b,c)]
        e[j][b]+=[(j,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 tp,ty,tc in e[sp][sy]:
    if v[tp][ty]>sc+tc:
      v[tp][ty]=sc+tc
      heappush(q,(v[tp][ty],tp,ty))
print(v[-1][-1])
0