結果
問題 | No.2948 move move rotti |
ユーザー | rotti_coder |
提出日時 | 2024-07-02 17:58:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 300 ms / 4,000 ms |
コード長 | 1,651 bytes |
コンパイル時間 | 1,582 ms |
コンパイル使用メモリ | 87,408 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 06:02:55 |
合計ジャッジ時間 | 5,605 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 109 ms
5,376 KB |
testcase_04 | AC | 134 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 135 ms
5,376 KB |
testcase_08 | AC | 272 ms
5,376 KB |
testcase_09 | AC | 300 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 6 ms
5,376 KB |
testcase_13 | AC | 64 ms
5,376 KB |
testcase_14 | AC | 54 ms
5,376 KB |
testcase_15 | AC | 36 ms
5,376 KB |
testcase_16 | AC | 218 ms
5,376 KB |
testcase_17 | AC | 104 ms
5,376 KB |
testcase_18 | AC | 217 ms
5,376 KB |
testcase_19 | AC | 155 ms
5,376 KB |
testcase_20 | AC | 184 ms
5,376 KB |
testcase_21 | AC | 271 ms
5,376 KB |
testcase_22 | AC | 134 ms
5,376 KB |
testcase_23 | AC | 222 ms
5,376 KB |
testcase_24 | AC | 131 ms
5,376 KB |
testcase_25 | AC | 139 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 5 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 3 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<bitset> using namespace std; int main() { int N,M,K; cin >> N >> M >> K; vector<int>X(K); for(int i=0;i<K;i++)cin >> X[i]; vector<vector<int>>graph(N); for(int i=0;i<M;i++){ int a,b; cin >> a >> b; graph[a-1].push_back(b); graph[b-1].push_back(a); } //N個それぞれの頂点について、0~N回の操作後に全員が同じ公園に集まることができるかどうか vector<vector<bool>>ans(N,vector<bool>(N+1,true)); for(int t=0;t<K;t++){ //操作回数、いる頂点、ビット vector<vector<vector<bool>>>dp(N+1,vector<vector<bool>>(N,vector<bool>(1<<N,false))); dp[0][X[t]-1][1<<(X[t]-1)]=true; for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ bool ok=false; for(int tmp=0;tmp<(1<<N);tmp++){ if(dp[i][j][tmp]==false)continue; ok=true; bitset<15>s(tmp); for(int k=0;k<graph[j].size();k++){ if(s[graph[j][k]-1])continue; dp[i+1][graph[j][k]-1][tmp+(1<<(graph[j][k]-1))]=true; } } if(ok==false)ans[j][i]=false; } } for(int i=0;i<N;i++){ bool ok=false; for(int tmp=0;tmp<(1<<N);tmp++)if(dp[N][i][tmp])ok=true; if(ok==false)ans[i][N]=false; } } bool ok=false; for(int i=0;i<N;i++)for(int j=0;j<=N;j++)if(ans[i][j])ok=true; if(ok)cout << "Yes" << endl; else cout << "No" << endl; }