結果

問題 No.943 取り調べ
ユーザー otamay6otamay6
提出日時 2019-12-06 07:34:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 170,860 KB
実行使用メモリ 8,760 KB
最終ジャッジ日時 2023-08-24 19:40:52
合計ジャッジ時間 4,528 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 TLE -
testcase_05 -- -
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>
#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));
    REP(i,N) REP(j,N) cin>>X[i][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];
        }
        bool flag=true;
        REP(k,N) REP(i,N){
            bool zihaku=true;
            REP(j,N) if(X[i][j]&&(~bit>>j&1)&&!B[j]) zihaku=false;
            B[i]=zihaku;
        }
        REP(i,N) if(!B[i]){
            rep(j,i+1,N) if(!B[j]){
                if(X[i][j]&&X[j][i]) flag=false;
            }
        }
        if(flag) ans=min(ans,res);
    }
    cout<<ans<<endl;
}
0