結果

問題 No.2948 move move rotti
ユーザー nouka28nouka28
提出日時 2024-07-02 21:29:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,084 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 256,840 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 05:51:28
合計ジャッジ時間 3,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 3 ms
5,376 KB
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 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<bool> dp(n);
        dp[e]=1;
        for(int i=0;i<n;i++){
            vector<bool> f2(n);
            
            for(int p=0;p<n;p++){
                if(dp[p])f2[p]=1;
            }
            
            for(int p=0;p<n;p++){
                f[i][p]=f[i][p]&&f2[p];
            }
            vector<bool> ndp(n);
            for(int p=0;p<n;p++){
                if(!dp[p])continue;
                for(auto&&nx:g[p]){
                    ndp[nx]=1;
                }
            }
            
            swap(dp,ndp);
        }
    }
    for(auto&&vec:f){
        for(auto&&flg:vec){
            if(flg){
                cout<<"Yes\n";
                return 0;
            }
        }
    }
    cout<<"No\n";
}
0