結果

問題 No.2948 move move rotti
ユーザー HIcoderHIcoder
提出日時 2024-12-22 23:28:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 216 ms / 4,000 ms
コード長 2,298 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 122,652 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-12-22 23:28:30
合計ジャッジ時間 3,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 87 ms
5,760 KB
testcase_04 AC 11 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 11 ms
5,248 KB
testcase_08 AC 216 ms
9,728 KB
testcase_09 AC 214 ms
9,344 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 29 ms
5,248 KB
testcase_16 AC 176 ms
8,576 KB
testcase_17 AC 78 ms
6,016 KB
testcase_18 AC 140 ms
9,600 KB
testcase_19 AC 46 ms
9,728 KB
testcase_20 AC 70 ms
9,600 KB
testcase_21 AC 209 ms
9,728 KB
testcase_22 AC 19 ms
9,344 KB
testcase_23 AC 148 ms
9,728 KB
testcase_24 AC 12 ms
7,936 KB
testcase_25 AC 27 ms
9,472 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
/*

dp[i][j][k][S]=人iがj回の移動で公園kに辿り着く. 通った公園の集合がS

(Sのbitの数)-1=j

なので
dp[i][k][S]で良い
*/
bool dp[15][15][1<<15];

int main(){
    int N,M,K;
    cin>>N>>M>>K;
    vector<int> X(K);
    for(int k=0;k<K;k++){
        cin>>X[k];
        X[k]--;
    }
    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);
    }
    for(int i=0;i<K;i++){//友達K
        dp[i][X[i]][1<<X[i]]=true;
    }

    int all_bit=(1<<N)-1;

    vector<int> ans(N+1,all_bit);//N回の移動で友達0~K-1すべてについて 訪れることが可能な公園の集合

        for(int i=0;i<K;i++){//友達i
            
            vector<int> visit(N+1,0);//visit[t]=t回目の移動で人iが訪れることができる公園の集合

            
                for(int S=0;S<(1<<N);S++){//通った公園の集合
                for(int k=0;k<N;k++){//公園kにいる
                    if(!dp[i][k][S]) continue;
                    visit[__builtin_popcount(S)-1]|=(1<<k);//Sのbitの数の時に,tの時に公園kにいる
                    for(int e:G[k]){
                        if((S>>e)&1) continue;
                        //まだ公園eを訪れていない
                        visit[__builtin_popcount(S|(1<<e))-1]|=(1<<e);
                        dp[i][e][S|(1<<e)]=true;
                    }
                }
            }

            for(int t=0;t<N;t++){
                //人iについて.移動回数がt回の時に訪れることができる公園の集合
                ans[t]&=visit[t];
            }
        }
    
    for(int t=0;t<N;t++){
        if(ans[t]>0){
            //cout<<"ans["<<t<<"]="<<bitset<15>(ans[t])<<endl;
            cout<<"Yes"<<endl;
            return 0;
        }
    }
    
    cout<<"No"<<endl;

}
0