結果

問題 No.2948 move move rotti
ユーザー cled0328cled0328
提出日時 2024-10-25 21:51:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 4,000 ms
コード長 1,108 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 206,452 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-10-25 21:51:52
合計ジャッジ時間 5,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 90 ms
16,640 KB
testcase_04 AC 34 ms
34,048 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 35 ms
34,048 KB
testcase_08 AC 217 ms
34,048 KB
testcase_09 AC 240 ms
34,048 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 6 ms
6,820 KB
testcase_13 AC 18 ms
18,560 KB
testcase_14 AC 16 ms
16,640 KB
testcase_15 AC 30 ms
8,960 KB
testcase_16 AC 172 ms
28,288 KB
testcase_17 AC 81 ms
16,640 KB
testcase_18 AC 157 ms
34,048 KB
testcase_19 AC 64 ms
34,176 KB
testcase_20 AC 86 ms
34,048 KB
testcase_21 AC 216 ms
34,048 KB
testcase_22 AC 42 ms
34,048 KB
testcase_23 AC 158 ms
34,304 KB
testcase_24 AC 35 ms
34,048 KB
testcase_25 AC 46 ms
34,048 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int n,m,k;
int x[15];
vector<int> g[15];
int main(){
    cin>>n>>m>>k;
    for(int i=0;i<k;i++)cin>>x[i];
    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<vector<int>> dp(k,vector<int>(n<<n));
    vector<vector<int>> ok(k,vector<int>(n*n));
    for(int i=0;i<k;i++){
        x[i]--;
        dp[i][(1<<x[i])*n+x[i]]=1;
        ok[i][x[i]*n+1]=1;
        for(int j=0;j<(n<<n);j++){
            if(dp[i][j]==0)continue;
            int s=j/n;
            for(auto l:g[j%n]){
                if(s>>l&1)continue;
                dp[i][(s|(1<<l))*n+l]=1;
                ok[i][l*n+__builtin_popcount(s)+1]=1;
            }
        }
        // cout<<"i:"<<i<<"\n";
        // for(int j=0;j<(n<<n);j++){
        //     cout<<j%n<<" "<<(bitset<5>(j/n))<<" "<<dp[i][j]<<"\n";
        // }
    }

    for(int i=0;i<n*n;i++){
        bool fl=true;
        for(int j=0;j<k;j++)fl&=ok[j][i];
        if(fl){
            cout<<"Yes\n";
            return 0;
        }
    }
    cout<<"No\n";
}
0