結果

問題 No.943 取り調べ
ユーザー finefine
提出日時 2019-12-06 12:58:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 1,206 ms
コード長 1,008 bytes
コンパイル時間 1,534 ms
コンパイル使用メモリ 172,940 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-02 09:19:54
合計ジャッジ時間 3,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 160 ms
5,376 KB
testcase_05 AC 145 ms
5,376 KB
testcase_06 AC 143 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 157 ms
5,376 KB
testcase_09 AC 41 ms
5,376 KB
testcase_10 AC 42 ms
5,376 KB
testcase_11 AC 21 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 47 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 45 ms
5,376 KB
testcase_23 AC 160 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector< vector<int> > x(n, vector<int>(n));
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            cin >> x[i][j];
        }
    }
    vector<ll> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }

    vector<ll> dp(1 << n, 1e15);
    dp[0] = 0;
    for (int i = 0; i < (1 << n) - 1; i++) {
        for (int j = 0; j < n; ++j) {
            if (i & (1 << j)) continue;
            int next_mask = (i | (1 << j));
            ll cost = 0;
            for (int k = 0; k < n; ++k) {
                if (i & (1 << k)) continue;
                if (x[j][k]) {
                    cost += a[k];
                    next_mask |= (1 << k);
                }
            }
            dp[next_mask] = min(dp[next_mask], dp[i] + cost);
        }
    }
    cout << dp[(1 << n) - 1] << "\n";
    return 0;
}
0