結果

問題 No.1690 Power Grid
ユーザー merom686merom686
提出日時 2021-09-24 22:49:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 3,000 ms
コード長 2,081 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 212,520 KB
実行使用メモリ 42,260 KB
最終ジャッジ日時 2024-07-05 11:06:02
合計ジャッジ時間 6,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,628 KB
testcase_01 AC 3 ms
9,552 KB
testcase_02 AC 5 ms
21,972 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 155 ms
40,608 KB
testcase_07 AC 157 ms
42,260 KB
testcase_08 AC 157 ms
40,556 KB
testcase_09 AC 158 ms
41,640 KB
testcase_10 AC 14 ms
41,392 KB
testcase_11 AC 301 ms
40,868 KB
testcase_12 AC 4 ms
11,724 KB
testcase_13 AC 6 ms
21,844 KB
testcase_14 AC 27 ms
32,464 KB
testcase_15 AC 304 ms
41,188 KB
testcase_16 AC 166 ms
41,592 KB
testcase_17 AC 88 ms
37,328 KB
testcase_18 AC 39 ms
34,768 KB
testcase_19 AC 155 ms
40,632 KB
testcase_20 AC 159 ms
41,324 KB
testcase_21 AC 14 ms
40,668 KB
testcase_22 AC 292 ms
40,788 KB
testcase_23 AC 304 ms
41,080 KB
testcase_24 AC 306 ms
41,652 KB
testcase_25 AC 298 ms
40,600 KB
testcase_26 AC 307 ms
41,352 KB
testcase_27 AC 3 ms
9,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Graph {
    static constexpr ll INF = 1LL << 60;
    struct Edge {
        int d, i;
    };
    Graph(int n) : e(n), d(n, vector<ll>(n, INF)), n(n) {
        for (int i = 0; i < n; i++) d[i][i] = 0;
    }
    void add_edge(int i, int j, int l) {
        e[i].push_back({ l, j });
        d[i][j] = l;//多重辺はないとする
    }
    void warshall_floyd() {
        for (int k = 0; k < n; k++)
            for (int i = 0; i < n; i++)
                for (int j = 0; j < n; j++)
                    d[i][j] = min(d[i][j], d[i][k] + d[k][j]);
    }
    vector<vector<Edge>> e;
    vector<vector<ll>> d;
    int n;
};

ll dp[19][1 << 18];

int main() {
    int n, m, K;
    cin >> n >> m >> K;

    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    Graph g(n);
    for (int j = 0; j < m; j++) {
        int x, y, z;
        cin >> x >> y >> z;
        x--; y--;

        g.add_edge(x, y, z);
        g.add_edge(y, x, z);
    }
    g.warshall_floyd();

    ll r = 1LL << 60;
    for (int i = 0; i < n; i++) {
        for (int k = 0; k < 1 << n; k++) {
            dp[i][k] = 1LL << 60;
        }
        dp[i][1 << i] = a[i];
        if (1 == K) r = min(r, dp[i][1 << i]);
    }
    for (int k = 0; k < 1 << n; k++) {
        int c = __builtin_popcount(k);
        if (c == 1 || c > K) continue;
        for (int i = 0; i < n; i++) {
            if (k & 1 << i) {
                int l = k ^ 1 << i;
                ll t = 1LL << 60;
                for (int j = 0; j < n; j++) {
                    if (l & 1 << j) {
                        t = min(t, dp[j][l]);
                    }
                }
                ll s = 1LL << 60;
                for (int j = 0; j < n; j++) {
                    if (l & 1 << j) {
                        s = min(s, g.d[i][j]);
                    }
                }
                dp[i][k] = t + a[i] + s;
                if (c == K) r = min(r, dp[i][k]);
            }
        }
    }
    cout << r << endl;

    return 0;
}
0