結果

問題 No.1690 Power Grid
ユーザー とりゐとりゐ
提出日時 2021-09-24 22:07:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 3,000 ms
コード長 861 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-05 10:40:01
合計ジャッジ時間 11,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 85 ms
68,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 497 ms
78,208 KB
testcase_07 AC 502 ms
78,208 KB
testcase_08 AC 495 ms
78,720 KB
testcase_09 AC 507 ms
78,336 KB
testcase_10 AC 583 ms
77,824 KB
testcase_11 AC 487 ms
78,336 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 70 ms
68,864 KB
testcase_14 AC 147 ms
76,860 KB
testcase_15 AC 635 ms
78,464 KB
testcase_16 AC 772 ms
78,336 KB
testcase_17 AC 326 ms
77,312 KB
testcase_18 AC 219 ms
76,800 KB
testcase_19 AC 656 ms
78,336 KB
testcase_20 AC 665 ms
78,492 KB
testcase_21 AC 659 ms
77,952 KB
testcase_22 AC 622 ms
78,464 KB
testcase_23 AC 590 ms
78,080 KB
testcase_24 AC 647 ms
78,464 KB
testcase_25 AC 619 ms
78,208 KB
testcase_26 AC 629 ms
78,336 KB
testcase_27 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Warshall_Floyd(edges,N):
  for k in range(N):
    for i in range(N):
      for j in range(N):
        edges[i][j]=min(edges[i][j],edges[i][k]+edges[k][j])
  return edges

INF=10**18
n,m,K=map(int,input().split())
a=list(map(int,input().split()))
edge=[[INF]*n for i in range(n)]
for i in range(m):
  x,y,k=map(int,input().split())
  x,y=x-1,y-1
  edge[x][y]=k
  edge[y][x]=k
for i in range(n):
  edge[i][i]=0
dist=Warshall_Floyd(edge,n)
dp=[INF]*(1<<n)
dp[0]=0
ans=INF
for bit in range(1<<n):
  if bit==0:
    for j in range(n):
      dp[1<<j]=a[j]
    continue
  if bin(bit).count('1')==K:
    ans=min(ans,dp[bit])
  x=[]
  y=[]
  for i in range(n):
    if bit&(1<<i)==0:
      x.append(i)
    else:
      y.append(i)
  for i in x:
    cost=INF
    for j in y:
      cost=min(cost,dist[i][j])
    dp[bit+2**i]=min(dp[bit+2**i],dp[bit]+cost+a[i])
print(ans)
0