結果

問題 No.2948 move move rotti
ユーザー askr58askr58
提出日時 2024-10-25 21:38:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 358 ms / 4,000 ms
コード長 1,259 bytes
コンパイル時間 5,485 ms
コンパイル使用メモリ 313,968 KB
実行使用メモリ 56,704 KB
最終ジャッジ日時 2024-10-25 21:38:53
合計ジャッジ時間 10,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 287 ms
56,704 KB
testcase_04 AC 64 ms
56,704 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 65 ms
56,576 KB
testcase_08 AC 285 ms
56,576 KB
testcase_09 AC 284 ms
56,704 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 24 ms
7,808 KB
testcase_13 AC 69 ms
56,576 KB
testcase_14 AC 64 ms
56,576 KB
testcase_15 AC 328 ms
56,576 KB
testcase_16 AC 322 ms
56,704 KB
testcase_17 AC 358 ms
56,576 KB
testcase_18 AC 306 ms
56,576 KB
testcase_19 AC 144 ms
56,576 KB
testcase_20 AC 216 ms
56,704 KB
testcase_21 AC 329 ms
56,704 KB
testcase_22 AC 89 ms
56,576 KB
testcase_23 AC 311 ms
56,576 KB
testcase_24 AC 69 ms
56,576 KB
testcase_25 AC 101 ms
56,704 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 10 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 4 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

int main()
{
    int n,m,k;
    cin>>n>>m>>k;
    vector<int> x(k);
    for(int i=0;i<k;i++)cin>>x[i],x[i]--;
    vector<vector<int>> graph(n,vector<int>(n));
    for(int i=0;i<m;i++){
        int u,v;
        cin>>u>>v;
        u--;v--;
        graph[u][v]=1;
        graph[v][u]=1;

    }

    vector<vector<vector<int>>> dp(n,vector<vector<int>>(1<<n,vector<int>(n,-1))),mem(n,vector<vector<int>>(n,vector<int>(n)));
    auto rec=[&](auto rec,int v,int u,int s)->void{
        if(dp[v][s][u]!=-1)return;
        else dp[v][s][u]=0;
        int cnt=0;
        for(int i=0;i<n;i++)if(s>>i&1)cnt++;
        mem[v][u][cnt-1]=1;
        for(int i=0;i<n;i++){
            if(graph[u][i]&&(s>>i&1)==0){
                rec(rec,v,i,s|(1<<i));
            }
        }
        return;
    }; 
    for(int i=0;i<n;i++){
        rec(rec,i,i,1<<i);
    }
    for(int i=0;i<n;i++){
        for(int j=0;j<n;j++){
            bool ok=true;
            for(int ii=0;ii<k;ii++)if(mem[x[ii]][i][j]==0)ok=false;
            if(ok){
                cout<<"Yes"<<endl;
                return 0;
            }
        }
    }
    cout<<"No"<<endl;

    return 0;
}
0