結果

問題 No.943 取り調べ
ユーザー granddaifukugranddaifuku
提出日時 2020-03-22 13:56:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,857 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 179,628 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-06 22:42:31
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for(int i = a; i < (int)b; ++i)
#define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i)

typedef long long ll;
typedef long double ld;

const int Inf = 1e9;
const double EPS = 1e-9;
const int MOD = 1e9 + 7;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(0);
    int n, res = Inf;
    cin >> n;
    vector<vector<bool> > x(n, vector<bool>(n));
    vector<int> a(n);
    rep (i, n) {
        rep (j, n) {
            int v;
            cin >> v;
            if (v) x[i][j] = true;
        }
    }
    rep (i, n) cin >> a[i];
    bool all = true;
    rep (i, n) {
        rep (j, n) {
            if (x[i][j]) all = false;
        }
    }
    if (all) {
        cout << 0 << endl;
        return 0;
    }

    rep (bit, 1 << n) {
        vector<int> sv;
        queue<int> s;
        vector<vector<bool> > y(n, vector<bool>(n));
        vector<bool> checked(n);
        rep (i, n) {
            if (bit & (1 << i)) {
                s.push(i);
                sv.push_back(i);
            }
        }
        while (!s.empty()) {
            int f = s.front();
            s.pop();
            rep (i, n) y[i][f] = true;
            rep (i, n) {
                if (checked[i]) continue;
                bool same = true;
                rep (j, n) {
                    if (x[i][j] && !y[i][j]) same = false;
                }
                if (same) {
                    checked[i] = true;
                    s.push(i);
                }
            }
        }
        bool ok = true;
        rep (i, n) if (!checked[i]) ok = false;
        if (ok) {
            int tmp = 0;
            rep (i, sv.size()) tmp += a[sv[i]];
            res = min(res, tmp);
        }
    }
    cout << res << endl;
    
    return 0;
}
0