結果
問題 | No.943 取り調べ |
ユーザー | otamay6 |
提出日時 | 2019-12-06 09:49:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,137 bytes |
コンパイル時間 | 1,879 ms |
コンパイル使用メモリ | 181,264 KB |
実行使用メモリ | 756,628 KB |
最終ジャッジ日時 | 2024-06-02 09:15:37 |
合計ジャッジ時間 | 4,688 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 88 ms
5,376 KB |
testcase_05 | AC | 81 ms
5,376 KB |
testcase_06 | AC | 90 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 91 ms
5,376 KB |
testcase_09 | MLE | - |
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 | -- | - |
ソースコード
#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(~bit>>i&1) que.push(i); while(!que.empty()&&flag){ int now=que.front();que.pop(); B[now]=true; for(auto e:graph[now]){ if(e==i) flag=false; if(~bit>>e&1){ que.push(e); } } } } if(flag) ans=min(ans,res); } cout<<ans<<endl; }