結果

問題 No.2674 k-Walk on Bipartite
ユーザー kokoseikokosei
提出日時 2024-03-15 23:29:15
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 3,062 ms
コンパイル使用メモリ 251,084 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-09-30 03:03:49
合計ジャッジ時間 5,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int N, M;
int S, T, K;
vector<int> G[202020];
int dist(){
    vector<int> D(N, -1);
    D[S] = 0;
    queue<int> que;
    que.push(S);
    while(que.size()){
        int v = que.front(); que.pop();
        for(int nv : G[v])if(D[nv] == -1){
            D[nv] = D[v] + 1;
            que.push(nv);
        }
    }
    return D[T];
}
int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> N >> M >> S >> T >> K;
    S--, T--;
    for(int i = 0;i < M;i++){
        int a, b; cin >> a >> b;
        a--, b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    int d = dist();
    if(N == 1){
        cout << "No\n";
    }else if(d == -1){
        if(K % 2 == 1){
            cout << "Unknown\n";
        }else if(N == 2){
            cout << "No\n";
        }else{
            cout << "Unknown\n";
        }
    }else if(d % 2 != K % 2){
        cout << "No\n";
    }else if(d > K){
        cout << "Unknown\n";
    }else if(d == 0){
        if(G[S].size() > 0){
            cout << "Yes\n";
        }else{
            cout << "Unknown\n";
        }
    }else{
        cout << "Yes\n";
    }
    return 0;
}
0