結果
問題 | No.943 取り調べ |
ユーザー | otamay6 |
提出日時 | 2019-12-06 07:55:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 1,421 ms |
コンパイル使用メモリ | 171,172 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-02 09:11:15 |
合計ジャッジ時間 | 2,698 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 92 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#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; REP(bit,1<<N){ int res=0; REP(j,N) if(bit>>j&1){ res+=A[j]; } bool flag=true; REP(i,N){ rep(j,i+1,N) if((~bit>>j&1)&&X[i][j]){ if(X[j][i]) flag=false; } } if(flag) ans=min(ans,res); } cout<<ans<<endl; }