結果

問題 No.2674 k-Walk on Bipartite
ユーザー hirakuuuuhirakuuuu
提出日時 2024-03-15 22:32:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,682 bytes
コンパイル時間 3,069 ms
コンパイル使用メモリ 254,172 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-09-30 01:57:57
合計ジャッジ時間 5,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 90 ms
11,876 KB
testcase_08 AC 113 ms
10,112 KB
testcase_09 AC 67 ms
11,944 KB
testcase_10 AC 127 ms
11,392 KB
testcase_11 AC 73 ms
9,984 KB
testcase_12 AC 124 ms
10,256 KB
testcase_13 AC 62 ms
10,788 KB
testcase_14 AC 18 ms
8,156 KB
testcase_15 AC 140 ms
12,288 KB
testcase_16 AC 90 ms
12,404 KB
testcase_17 AC 96 ms
9,728 KB
testcase_18 AC 39 ms
8,704 KB
testcase_19 AC 83 ms
11,468 KB
testcase_20 AC 77 ms
11,700 KB
testcase_21 AC 106 ms
10,496 KB
testcase_22 AC 136 ms
13,696 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 1 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 1 ms
6,820 KB
testcase_35 AC 1 ms
6,820 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 2 ms
6,820 KB
testcase_38 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, n) for(int i = a; i < n; i++)
#define rrep(i, a, n) for(int i = a; i >= n; i--)
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
// constexpr ll MOD = 1000000007;
constexpr ll MOD = 998244353;
constexpr int IINF = 1001001001;
constexpr ll INF = 1LL<<60;

template<class t,class u> void chmax(t&a,u b){if(a<b)a=b;}
template<class t,class u> void chmin(t&a,u b){if(b<a)a=b;}


int main(){
    int n, m; cin >> n >> m;
    int s, t, k; cin >> s >> t >> k;
    s--, t--;
    vector<vector<int>> g(n);
    rep(i, 0, m){
        int a, b; cin >> a >> b;
        a--, b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }

    vector<int> dist(n, -1);
    dist[s] = 0;
    queue<int> que;
    que.push(s);
    while(!que.empty()){
        int q = que.front(); que.pop();
        for(auto nq: g[q]){
            if(dist[nq] != -1) continue;
            dist[nq] = dist[q]+1;
            que.push(nq);
        }
    }
    int not_reach = 0, same_group = 0, diff_group = 0;
    rep(i, 0, n){
        if(dist[i] == -1) not_reach++;
        else if(dist[s] == dist[i]) same_group++;
        else diff_group++;
    }

    if(dist[t] != -1){
        if((dist[t]%2 == 0 && k%2 == 1) || (dist[t]%2 == 1 && k%2 == 0)){
            cout << "No" << endl;
            return 0;
        }
        if(k < dist[t]) cout << "Unknown" << endl;
        else cout << "Yes" << endl;
    }else{
        if(k%2 == 0){
            if(n == 2 && m == 0) cout << "No" << endl;
            else cout << "Unknown" << endl;
        }else{
            cout << "Unknown" << endl;
        }
    }






    
    return 0;
}
0