結果

問題 No.2948 move move rotti
ユーザー MMMM
提出日時 2024-10-25 22:17:10
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,641 bytes
コンパイル時間 6,524 ms
コンパイル使用メモリ 337,748 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-25 22:17:29
合計ジャッジ時間 7,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 WA -
testcase_17 AC 2 ms
6,820 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 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>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<pair<int,ll>>>;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

pair<int,int> song(int a, int b, int n){
  for(int x = int(n/a); x >= 0; x--){
    int y = n - a*x;
    if(y % b == 0)
      return(make_pair(x,y/b));
  }
  return(make_pair(-1,-1));
}

vector<int> BFS(vector<vector<int>> g, int s){
  int n = g.size();
  
  vector<int> res(n,-1);
  queue<pair<int,int>> q;
  
  q.emplace(s,0);
  res[s] = 0;
  
  while(!q.empty()){
    auto[now,stp] = q.front();
    q.pop();
    for(int nxt = 0; nxt < n; nxt++){
      if(g[now][nxt] == 1 && res[nxt] == -1){
        res[nxt] = stp+1;
        q.emplace(nxt,stp+1);
      }
    }
  }
  
  return res;
}


int main(){
  // input
  int N,M,K;
  cin >> N >> M >> K;
  vector<int> X(K);
  for(int i = 0; i < K; i++){
    cin >> X[i]; --X[i];
  }
  
  // prep
  vector<vector<int>> G(N,vector<int>(N,0));
  while(M--){
    int u,v;
    cin >> u >> v;
    --u; --v;
    G[u][v] = 1;
    G[v][u] = 1;
  }
  
  vector<vector<int>> D(K);
  for(int i = 0; i < K; i++)
    D[i] = BFS(G,X[i]);
  
  // solve
  bool can = 0;
  for(int x = 0; x < N; x++){
    // x : destination
    if(D[0][x] < 0) continue;
    
    bool tmp = 1;
    for(int i = 1; i < K; i++){
      if(D[i][x] != D[0][x])
        tmp = 0;
    }
    
    if(tmp){
      can = 1;
      break;
    }
  }
  
  // output
  cout << (can ? "Yes" : "No") << endl;
}
0