結果

問題 No.2948 move move rotti
ユーザー akiaki
提出日時 2024-10-26 13:59:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 601 ms / 4,000 ms
コード長 1,568 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 211,300 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-26 13:59:44
合計ジャッジ時間 9,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 214 ms
6,820 KB
testcase_04 AC 85 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 109 ms
6,816 KB
testcase_08 AC 548 ms
6,816 KB
testcase_09 AC 532 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 12 ms
6,820 KB
testcase_13 AC 97 ms
6,820 KB
testcase_14 AC 45 ms
6,816 KB
testcase_15 AC 80 ms
6,816 KB
testcase_16 AC 472 ms
6,816 KB
testcase_17 AC 226 ms
6,816 KB
testcase_18 AC 495 ms
6,816 KB
testcase_19 AC 318 ms
6,820 KB
testcase_20 AC 362 ms
6,816 KB
testcase_21 AC 601 ms
6,816 KB
testcase_22 AC 283 ms
6,820 KB
testcase_23 AC 486 ms
6,820 KB
testcase_24 AC 219 ms
6,816 KB
testcase_25 AC 286 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 8 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n,m,k;
    cin >> n >> m >> k;
    vector<int> x(k);
    rep(i,k) cin >> x[i],x[i]--;
    vector<vector<int>> g(n);
    rep(i,m){
        int u,v;
        cin >> u >> v;
        u--;v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }

    vector<vector<vector<int>>> a(k,vector<vector<int>>(n,vector<int>(n+1,0)));

    rep(ki,k){
        vector<vector<int>> dp(1<<n,vector<int>(n,0));
        dp[1<<x[ki]][x[ki]] = 1;
        rep(bit, 1<<n){
            rep(j,n){
                for(int l:g[j]){
                    if((bit & (1<<l))==0){
                        dp[bit|(1<<l)][l] |= dp[bit][j];
                    }
                }
            }
        }
        rep(j,n){
            rep(bit,1<<n){
                if(dp[bit][j]){
                    int c=0;
                    rep(l,n){
                        if(bit & (1<<l)) c++;
                    }
                    a[ki][j][c]=1;
                }
            }
        }
    }
    // rep(i,k){
    //     rep(j,n){
    //         rep(l,n) cout << a[i][j][k] << " ";
    //         cout << endl;
    //     }
    //     cout << endl;
    // }

    rep(i,n){
        rep(j,n+1){
            bool o = true;
            rep(l,k) if(!a[l][i][j]) o = false;
            if(o){
                cout << "Yes" << endl;
                return 0;
            }

        }
    }
    cout << "No" << endl;
}
0