結果

問題 No.2948 move move rotti
ユーザー askr58askr58
提出日時 2024-10-25 21:36:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,309 bytes
コンパイル時間 5,806 ms
コンパイル使用メモリ 312,712 KB
実行使用メモリ 56,704 KB
最終ジャッジ日時 2024-10-25 21:36:27
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 119 ms
56,576 KB
testcase_04 AC 65 ms
56,704 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 66 ms
56,704 KB
testcase_08 AC 122 ms
56,576 KB
testcase_09 AC 119 ms
56,576 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 WA -
testcase_12 AC 10 ms
7,936 KB
testcase_13 AC 65 ms
56,704 KB
testcase_14 AC 65 ms
56,576 KB
testcase_15 AC 80 ms
56,704 KB
testcase_16 WA -
testcase_17 AC 74 ms
56,576 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 66 ms
56,576 KB
testcase_21 AC 99 ms
56,704 KB
testcase_22 AC 65 ms
56,576 KB
testcase_23 AC 70 ms
56,704 KB
testcase_24 AC 64 ms
56,704 KB
testcase_25 AC 65 ms
56,576 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 5 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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[v][i]&&(s>>i&1)==0){
                rec(rec,v,i,s|(1<<i));
            }else{
                dp[v][s][i]=0;
            }
        }
        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