結果

問題 No.2948 move move rotti
ユーザー nouka28nouka28
提出日時 2024-07-02 21:27:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,284 bytes
コンパイル時間 3,654 ms
コンパイル使用メモリ 258,036 KB
実行使用メモリ 8,144 KB
最終ジャッジ日時 2024-07-03 05:51:54
合計ジャッジ時間 26,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 752 ms
8,140 KB
testcase_04 AC 1,039 ms
8,016 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1,040 ms
8,140 KB
testcase_08 WA -
testcase_09 AC 1,855 ms
8,140 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 32 ms
5,376 KB
testcase_13 AC 507 ms
8,100 KB
testcase_14 AC 424 ms
8,028 KB
testcase_15 AC 244 ms
7,884 KB
testcase_16 AC 1,457 ms
8,144 KB
testcase_17 AC 708 ms
8,140 KB
testcase_18 AC 1,665 ms
8,140 KB
testcase_19 AC 1,386 ms
8,140 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,095 ms
8,012 KB
testcase_25 WA -
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 19 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n,m,k;cin>>n>>m>>k;
    vector<int> x(k);for(auto&e:x)cin>>e,e--;
    vector<vector<int>> g(n);
    for(int i=0;i<m;i++){
        int u,v;cin>>u>>v;
        u--;v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    vector f(n,vector<bool>(n,1));
    for(auto&&e:x){
        vector dp(1<<n,vector<bool>(n));
        dp[1<<e][e]=1;
        for(int i=0;i<n;i++){
            vector<bool> f2(n);
            for(int S=0;S<(1<<n);S++){
                for(int p=0;p<n;p++){
                    if(dp[S][p])f2[p]=1;
                }
            }
            for(int p=0;p<n;p++){
                f[i][p]=f[i][p]&&f2[p];
            }
            vector ndp(1<<n,vector<bool>(n));
            for(int S=0;S<(1<<n);S++){
                for(int p=0;p<n;p++){
                    if(!dp[S][p])continue;
                    for(auto&&nx:g[p]){
                        // if(S>>nx&1)continue;
                        ndp[S|(1<<nx)][nx]=1;
                    }
                }
            }
            swap(dp,ndp);
        }
    }
    for(auto&&vec:f){
        for(auto&&flg:vec){
            if(flg){
                cout<<"Yes\n";
                return 0;
            }
        }
    }
    cout<<"No\n";
}
0