結果

問題 No.2948 move move rotti
ユーザー umimelumimel
提出日時 2024-10-25 22:28:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 497 ms / 4,000 ms
コード長 2,004 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 182,616 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-25 22:28:29
合計ジャッジ時間 11,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 466 ms
6,816 KB
testcase_04 AC 418 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 431 ms
6,820 KB
testcase_08 AC 471 ms
6,816 KB
testcase_09 AC 460 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 36 ms
6,816 KB
testcase_13 AC 457 ms
6,820 KB
testcase_14 AC 431 ms
6,820 KB
testcase_15 AC 486 ms
6,816 KB
testcase_16 AC 484 ms
6,820 KB
testcase_17 AC 497 ms
6,816 KB
testcase_18 AC 490 ms
6,816 KB
testcase_19 AC 476 ms
6,816 KB
testcase_20 AC 486 ms
6,816 KB
testcase_21 AC 474 ms
6,820 KB
testcase_22 AC 465 ms
6,816 KB
testcase_23 AC 493 ms
6,820 KB
testcase_24 AC 457 ms
6,816 KB
testcase_25 AC 471 ms
6,816 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 16 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 7 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second
mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60LL;
const int IINF = (1 << 30) - 2;


void solve(){
    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<bool>> A(n, vector<bool>(n, false));
    for(int i=0; i<m; i++){
        int u, v; cin >> u >> v;
        u--; v--;
        A[u][v] = A[v][u] = true;
    }

    vector<vector<vector<bool>>> dp(n, vector<vector<bool>>(n, vector<bool>(1<<n, false)));

    // dp
    for(int s=0; s<n; s++){
        dp[s][s][1<<s] = true;
        for(int bit=1; bit<(1<<n); bit++){
            for(int i=0; i<n; i++) if((bit>>i)&1){
                int bit2 = bit ^ (1<<i);
                for(int j=0; j<n; j++) if(((bit2>>j)&1) && A[i][j]){
                    dp[s][i][bit] = dp[s][i][bit] | dp[s][j][bit2];
                }
            }
        }
    }

    vector<vector<vector<bool>>> reachable(n, vector<vector<bool>>(n, vector<bool>(n+1, false)));
    for(int s=0; s<n; s++)for(int t=0; t<n; t++){
        for(int bit=0; bit<(1<<n); bit++){
            int cnt = 0;
            for(int i=0; i<n; i++) if((bit>>i)&1) cnt++;
            reachable[s][t][cnt] = reachable[s][t][cnt] | dp[s][t][bit];
        }
    }

    for(int l=0; l<=n; l++){
        for(int t=0; t<n; t++){
            bool ok = true;
            for(int i=0; i<k; i++) ok &= reachable[x[i]][t][l];
            if(ok){
                cout << "Yes\n";
                return;
            }
        }
    }

    cout << "No\n";
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int T=1;
    //cin >> T;
    while(T--) solve();
}
0