結果

問題 No.943 取り調べ
ユーザー otamay6otamay6
提出日時 2019-12-06 09:47:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,145 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 179,664 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-24 19:47:04
合計ジャッジ時間 5,660 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
using namespace std;
using ll = long long;

int main(){
    int N;cin>>N;
    vector<vector<int>> X(N,vector<int>(N)),graph(N);
    REP(i,N) REP(j,N){
        cin>>X[i][j];
        if(X[i][j]) graph[i].push_back(j);
    }
    vector<int> A(N);
    REP(i, N){
        cin >> A[i];
    }
    int ans=INT_MAX;
    vector<bool> B(N,false);
    
    REP(bit,1<<N){
        int res=0;
        REP(j,N) if(bit>>j&1){
            res+=A[j];
        }
        B.assign(N,false);
        bool flag=true;
        queue<int> que;
        REP(i,N){
            if(!B[i]&&~bit>>i&1) que.push(i);
            while(!que.empty()){
                int now=que.front();que.pop();
                B[now]=true;
                for(auto e:graph[now]){
                    if(e==i) flag=false;
                    if(!B[e]&&~bit>>e&1){
                        que.push(e);
                    }
                }
            }
        }
        if(flag) ans=min(ans,res);
    }
    cout<<ans<<endl;
}
0