結果

問題 No.1690 Power Grid
ユーザー kwm_tkwm_t
提出日時 2021-09-24 22:59:30
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 3,000 ms
コード長 2,178 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 172,092 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2023-09-18 21:58:57
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,084 KB
testcase_01 AC 4 ms
8,240 KB
testcase_02 AC 5 ms
8,144 KB
testcase_03 AC 4 ms
8,120 KB
testcase_04 AC 4 ms
8,060 KB
testcase_05 AC 5 ms
8,040 KB
testcase_06 AC 136 ms
9,804 KB
testcase_07 AC 137 ms
9,840 KB
testcase_08 AC 137 ms
9,840 KB
testcase_09 AC 136 ms
9,892 KB
testcase_10 AC 137 ms
9,800 KB
testcase_11 AC 137 ms
10,044 KB
testcase_12 AC 5 ms
8,072 KB
testcase_13 AC 5 ms
8,348 KB
testcase_14 AC 18 ms
8,072 KB
testcase_15 AC 139 ms
9,888 KB
testcase_16 AC 139 ms
9,788 KB
testcase_17 AC 67 ms
8,784 KB
testcase_18 AC 34 ms
8,212 KB
testcase_19 AC 138 ms
9,916 KB
testcase_20 AC 138 ms
9,892 KB
testcase_21 AC 138 ms
9,792 KB
testcase_22 AC 137 ms
9,892 KB
testcase_23 AC 138 ms
9,824 KB
testcase_24 AC 138 ms
9,844 KB
testcase_25 AC 140 ms
9,916 KB
testcase_26 AC 140 ms
9,796 KB
testcase_27 AC 5 ms
8,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
vector<int>to[200005];
int popcount(long long n) {
	n = (n & 0x5555555555555555) + (n >> 1 & 0x5555555555555555);
	n = (n & 0x3333333333333333) + (n >> 2 & 0x3333333333333333);
	n = (n & 0x0f0f0f0f0f0f0f0f) + (n >> 4 & 0x0f0f0f0f0f0f0f0f);
	n = (n & 0x00ff00ff00ff00ff) + (n >> 8 & 0x00ff00ff00ff00ff);
	n = (n & 0x0000ffff0000ffff) + (n >> 16 & 0x0000ffff0000ffff);
	n = (n & 0x00000000ffffffff) + (n >> 32 & 0x00000000ffffffff);
	return n;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m, c; cin >> n >> m >> c;
	vector<int>a(n);
	rep(i, n)cin >> a[i];
	vector<vector<long long>> dist(n, vector<long long>(n, LINF));
	rep(i, n)dist[i][i] = 0;
	rep(i, m) {
		int x, y, z; cin >> x >> y >> z; x--; y--;
		dist[x][y] = z;
		dist[y][x] = z;
	}
	//わーしゃるふろいど
	rep(k, n)rep(i, n)rep(j, n) chmin(dist[i][j], dist[i][k] + dist[k][j]);
	vector<long long>dp(1 << n, LINF);
	rep(i, n) dp[1 << i] = a[i];
	rep(i, 1 << n) {
		if (0 == i)continue;
		rep(j, n) {
			if (1 & (i >> j)) continue;
			int ni = i + (1 << j);
			long long cost = LINF;
			rep(k, n) {
				if (!(1 & (i >> k)))continue;
				chmin(cost, dist[k][j]);
			}
			chmin(dp[ni], dp[i] + a[j] + cost);
		}
	}
	long long ans = LINF;
	rep(i, 1 << n)if (c == popcount(i))chmin(ans, dp[i]);
	cout << ans << endl;
	return 0;
}
0