結果

問題 No.2674 k-Walk on Bipartite
ユーザー XelmephXelmeph
提出日時 2024-02-29 21:29:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 5,314 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 146,380 KB
実行使用メモリ 13,816 KB
最終ジャッジ日時 2024-03-13 19:33:17
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 50 ms
12,068 KB
testcase_08 AC 62 ms
10,240 KB
testcase_09 AC 44 ms
11,976 KB
testcase_10 AC 81 ms
11,648 KB
testcase_11 AC 48 ms
10,112 KB
testcase_12 AC 79 ms
10,368 KB
testcase_13 AC 38 ms
10,924 KB
testcase_14 AC 14 ms
8,320 KB
testcase_15 AC 90 ms
12,444 KB
testcase_16 AC 68 ms
12,576 KB
testcase_17 AC 59 ms
9,856 KB
testcase_18 AC 25 ms
8,704 KB
testcase_19 AC 52 ms
11,492 KB
testcase_20 AC 43 ms
11,732 KB
testcase_21 AC 65 ms
10,752 KB
testcase_22 AC 87 ms
13,816 KB
testcase_23 AC 2 ms
6,676 KB
testcase_24 AC 2 ms
6,676 KB
testcase_25 AC 2 ms
6,676 KB
testcase_26 AC 2 ms
6,676 KB
testcase_27 AC 2 ms
6,676 KB
testcase_28 AC 2 ms
6,676 KB
testcase_29 AC 2 ms
6,676 KB
testcase_30 AC 2 ms
6,676 KB
testcase_31 AC 2 ms
6,676 KB
testcase_32 AC 2 ms
6,676 KB
testcase_33 AC 2 ms
6,676 KB
testcase_34 AC 2 ms
6,676 KB
testcase_35 AC 2 ms
6,676 KB
testcase_36 AC 2 ms
6,676 KB
testcase_37 AC 2 ms
6,676 KB
testcase_38 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <array>
#include <vector>
#include <deque>
#include <list>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <stack>
#include <queue>
#include <bitset>
#include <tuple>
#include <cmath>
#include <complex>
#include <algorithm>
#include <utility>
#include <regex>
#include <cstdint>
#include <numeric>
#include <functional>
#include <cassert>

using namespace std;

namespace utils{
#define ALL(x) begin(x), end(x)
#define RALL(x) rbegin(x), rend(x)
    ///----- aliases
    using ll = long long int;
    using ull = unsigned long long;

    template<class T, class Compare> using p_queue = priority_queue<T, vector<T>, Compare>;
    template<class T> using min_queue = p_queue<T, greater<T>>;
    template<class T> using max_queue = p_queue<T, less<T>>;

    template<class T> inline bool CHMIN(T& X, const T& A){ if(X > A) {X = A; return true;} return false; }
    template<class T> inline bool CHMAX(T& X, const T& A){ if(X < A) {X = A; return true;} return false; }

    ///----- vector I/O
    template<class T>
    vector<T> VEC(size_t n, T t){
        return vector<T>(n, t);
    }

    template<class ...Ts>
    auto VEC(size_t n, Ts ... ts){
        return vector<decltype(VEC(ts...))>(n, VEC(ts...));
    }


    template<class T>
    istream& operator>>(istream& is, vector<T>& v){
        for (auto &&x : v) { is >> x; } return is;
    }

    template<class T>
    ostream& operator<<(ostream& os, const vector<T>& v){
        auto p = v.begin();
        assert(p != v.end());
        os << *p++;
        while(p != v.end()){
            os << ' ' << *p++;
        }
        return os ;
    }

    template<class T>
    ostream& operator<<(ostream& os, const vector<vector<T>>& v){
        auto p = v.begin();
        assert(p != v.end());
        os << *p++;
        while(p != v.end()){
            os << '\n' << *p++;
        }
        return os;
    }

    ///----- tuple I/O
    template <class S, class T>
    istream& operator>>(istream& is, tuple<S, T>& t){
        return is >> get<0>(t) >> get<1>(t);
    }

    template <class S, class T>
    istream& operator>>(istream& is, pair<S, T>& t){
        return is >> get<0>(t) >> get<1>(t);
    }

    template <class S, class T, class U>
    istream& operator>>(istream& is, tuple<S, T, U>& t){
        return is >> get<0>(t) >> get<1>(t) >> get<2>(t);
    }

    template <class S, class T>
    ostream& operator<<(ostream& os, const tuple<S, T>& t){
        return os << get<0>(t) << ' ' <<  get<1>(t);
    }

    template <class S, class T>
    ostream& operator<<(ostream& os, const pair<S, T>& t){
        return os << get<0>(t) << ' ' <<  get<1>(t);
    }

    template <class S, class T, class U>
    ostream& operator<<(ostream& os, const tuple<S, T, U>& t){
        return os << get<0>(t) << ' ' <<  get<1>(t) << ' ' <<  get<2>(t);
    }

    ///----- constants
    constexpr ll INFLL   = 1'000'000'000'000'000'020ll;
    constexpr ll INF     = 1'000'000'009;
    constexpr double PI      = 3.14'159'265'358'979'323'846;
    constexpr double EPS     = 1e-12;
}
using namespace utils;


class solver{
    istream& is;
    ostream& os;

public:
    solver(istream& I, ostream& O) :is(I), os(O) {}
    int N, M;
    int s, t, k;
    vector<vector<int>> F;

    bool input() {
        N = M = 0;
        is >> N >> M;
        is >> s >> t >> k;
        s--; t--;
        F.resize(N);
        for (int i = 0; i < M; ++i) {
            int a, b;
            is >> a >> b;
            a--; b--;
            F[a].push_back(b);
            F[b].push_back(a);
        } // end i

        return !!is;
    }


    void run();
};

void solver::run(){
    if(!input()) return;
    if(k < 1){
        assert(1);
    }
    if(s == t){
        if(k%2 == 1){
            os << "No\n";
        }
        else if(F[s].empty()){
            os << "Unknown\n";
        }
        else os << "Yes\n";
        return;
    }

    vector<int> d(N, -1);

    queue<int> qv;
    qv.push(s);
    d[s] = 0;

    while(!qv.empty()){
        int vi = qv.front();
        qv.pop();
        for (auto &&u: F[vi]) {
            if(d[u] == -1 or (s == u and d[u] == 0)){
                qv.push(u);
                d[u] = d[vi] + 1;
            }
        } // end u
    }

    // not connected
    if(d[t] == -1){
        if(N==2){
            // s != t
            if(k % 2 != 1){
                os << "No\n";
                return;
            }
        }
        os << "Unknown\n";

        return;
    }

    if((k % 2) != (d[t] % 2)){
        os << "No\n";
        return;
    }

    else if(d[t] <= k){
        os << "Yes\n";
        return;
    }

    os << "Unknown\n";
}

int main(int argc, char *argv[]) {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << setprecision(16) << scientific;
#ifdef XELMH
    string test_cases = "test_c.txt";
    cerr << test_cases << " -->" << endl;
    auto fs = fstream(test_cases, fstream::in);
    int loop = 0;
    while(fs) {
        loop++;
        cout << '#' << loop << "#------\n";
        solver(fs, cout).run();
    }
    if(loop <= 1) {
        cout << "===" << endl;
        while(cin) solver(cin, cout).run();
    }
#else
    solver(cin, cout).run();
#endif
    return 0;
}
0