結果

問題 No.1690 Power Grid
ユーザー tko919tko919
提出日時 2021-09-25 04:37:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 3,000 ms
コード長 1,183 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 205,260 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-05 11:58:27
合計ジャッジ時間 4,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 118 ms
6,940 KB
testcase_07 AC 118 ms
6,940 KB
testcase_08 AC 119 ms
6,944 KB
testcase_09 AC 119 ms
6,944 KB
testcase_10 AC 120 ms
6,944 KB
testcase_11 AC 121 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 120 ms
6,944 KB
testcase_16 AC 121 ms
6,940 KB
testcase_17 AC 56 ms
6,940 KB
testcase_18 AC 27 ms
6,940 KB
testcase_19 AC 120 ms
6,940 KB
testcase_20 AC 119 ms
6,940 KB
testcase_21 AC 121 ms
6,940 KB
testcase_22 AC 119 ms
6,940 KB
testcase_23 AC 120 ms
6,944 KB
testcase_24 AC 120 ms
6,944 KB
testcase_25 AC 120 ms
6,940 KB
testcase_26 AC 122 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

ll dp[1<<18];

int main(){
   int n,m,k;
   cin>>n>>m>>k;
   vector<ll> a(n);
   rep(i,0,n)cin>>a[i];
   ll d[20][20];
   rep(i,0,n)rep(j,0,n)d[i][j]=INF;
   rep(i,0,n)d[i][i]=0;
   rep(_,0,m){
      int u,v,w;
      cin>>u>>v>>w;
      u--; v--;
      d[u][v]=d[v][u]=w;
   }
   
   rep(k,0,n)rep(i,0,n)rep(j,0,n)chmin(d[i][j],d[i][k]+d[k][j]);
   rep(mask,0,1<<n)dp[mask]=INF;
   dp[0]=0;
   rep(mask,0,1<<n){
      rep(to,0,n)if(!(mask>>to&1)){
         ll add=INF;
         rep(from,0,n)if(mask>>from&1){
            chmin(add,d[from][to]);
         }
         if(mask==0)add=0;
         chmin(dp[mask|(1<<to)],dp[mask]+add+a[to]);
      }
   }
   ll res=INF;
   rep(mask,0,1<<n)if(__builtin_popcountll(mask)==k)chmin(res,dp[mask]);
   cout<<res<<'\n';
   return 0;
}
0