結果

問題 No.1690 Power Grid
ユーザー kwm_tkwm_t
提出日時 2021-09-24 22:59:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 3,000 ms
コード長 2,178 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 174,808 KB
実行使用メモリ 10,052 KB
最終ジャッジ日時 2024-07-05 11:09:48
合計ジャッジ時間 4,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,060 KB
testcase_01 AC 4 ms
8,180 KB
testcase_02 AC 3 ms
8,176 KB
testcase_03 AC 3 ms
8,128 KB
testcase_04 AC 4 ms
8,136 KB
testcase_05 AC 3 ms
7,996 KB
testcase_06 AC 130 ms
9,964 KB
testcase_07 AC 131 ms
9,944 KB
testcase_08 AC 131 ms
10,020 KB
testcase_09 AC 129 ms
9,928 KB
testcase_10 AC 129 ms
10,052 KB
testcase_11 AC 134 ms
10,020 KB
testcase_12 AC 4 ms
8,172 KB
testcase_13 AC 3 ms
8,084 KB
testcase_14 AC 16 ms
8,332 KB
testcase_15 AC 134 ms
9,900 KB
testcase_16 AC 135 ms
9,976 KB
testcase_17 AC 64 ms
8,768 KB
testcase_18 AC 32 ms
8,496 KB
testcase_19 AC 130 ms
9,828 KB
testcase_20 AC 129 ms
9,952 KB
testcase_21 AC 132 ms
9,816 KB
testcase_22 AC 132 ms
9,956 KB
testcase_23 AC 134 ms
9,944 KB
testcase_24 AC 132 ms
9,884 KB
testcase_25 AC 133 ms
9,940 KB
testcase_26 AC 135 ms
9,936 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