結果
問題 | No.2948 move move rotti |
ユーザー | rotti_coder |
提出日時 | 2024-07-03 05:29:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 1,265 ms |
コンパイル使用メモリ | 100,008 KB |
実行使用メモリ | 107,264 KB |
最終ジャッジ日時 | 2024-07-03 05:52:27 |
合計ジャッジ時間 | 24,175 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 19 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | WA | - |
ソースコード
#include<iostream> #include<vector> #include<set> using namespace std; set<int>visited; vector<set<int>>ans; vector<vector<int>>graph; vector<set<set<int>>>memo; void dfs(int now){ if(memo[now-1].count(visited))return ; memo[now-1].insert(visited); visited.insert(now); ans[visited.size()].insert(now); for(int i=0;i<graph[now-1].size();i++)if(visited.count(graph[now-1][i])==0)dfs(graph[now-1][i]); visited.erase(now); } int main() { int N,M,K; cin >> N >> M >> K; set<int>st; for(int i=0;i<K;i++){ int x; cin >> x; st.insert(x); } if(st.size()==1){ cout << "Yes" << endl; return 0; } for(int i=0;i<=N;i++)ans.push_back({}); for(int i=0;i<N;i++)graph.push_back({}); for(int i=0;i<N;i++)memo.push_back({}); 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); } for(int i=1;i<=N;i++)dfs(i); bool ok=false; for(int i=1;i<=N;i++)if(ans[i]>=st)ok=true; if(ok)cout << "Yes" << endl; else cout << "No" << endl; }