結果

問題 No.2948 move move rotti
ユーザー rotti_coderrotti_coder
提出日時 2024-07-03 05:27:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,114 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 99,956 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-07-03 05:52:14
合計ジャッジ時間 21,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 17 ms
6,944 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
5,376 KB
testcase_28 WA -
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0