結果

問題 No.2674 k-Walk on Bipartite
ユーザー tour2sttour2st
提出日時 2024-03-15 22:35:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,732 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 105,832 KB
実行使用メモリ 17,856 KB
最終ジャッジ日時 2024-09-30 02:01:38
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,516 KB
testcase_01 AC 4 ms
8,180 KB
testcase_02 AC 4 ms
9,028 KB
testcase_03 AC 4 ms
9,540 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 4 ms
9,800 KB
testcase_07 AC 110 ms
13,892 KB
testcase_08 AC 147 ms
16,068 KB
testcase_09 AC 96 ms
13,504 KB
testcase_10 AC 195 ms
17,476 KB
testcase_11 AC 103 ms
13,508 KB
testcase_12 AC 176 ms
17,856 KB
testcase_13 AC 87 ms
13,124 KB
testcase_14 AC 24 ms
10,952 KB
testcase_15 AC 186 ms
16,748 KB
testcase_16 AC 132 ms
14,788 KB
testcase_17 AC 125 ms
14,404 KB
testcase_18 AC 51 ms
11,976 KB
testcase_19 AC 120 ms
14,020 KB
testcase_20 AC 98 ms
13,768 KB
testcase_21 AC 139 ms
15,044 KB
testcase_22 AC 195 ms
17,092 KB
testcase_23 AC 4 ms
9,156 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 4 ms
9,924 KB
testcase_27 AC 4 ms
8,132 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 4 ms
9,160 KB
testcase_31 AC 4 ms
9,540 KB
testcase_32 AC 4 ms
8,648 KB
testcase_33 AC 4 ms
8,772 KB
testcase_34 AC 4 ms
8,260 KB
testcase_35 AC 4 ms
9,152 KB
testcase_36 AC 4 ms
9,156 KB
testcase_37 AC 4 ms
8,896 KB
testcase_38 AC 4 ms
8,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:57:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   57 |                 auto [idx, len] = idx_len.front();
      |                      ^
main.cpp:69:13: warning: 'dst' may be used uninitialized [-Wmaybe-uninitialized]
   69 |             if(dst<=k)
      |             ^~
main.cpp:51:17: note: 'dst' was declared here
   51 |             int dst;
      |                 ^~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <random>
#include <time.h>
#include <map>
using namespace std;

int n,m,s,t,k,a,b;
vector<int>e[200000];
pair<int,int> color[200000];
bool visited[200000];
bool length[200000];

void dfs(int now, int sta, int col)
{
    if(visited[now]) return;
    visited[now] = true;
    color[now] = {sta,col};
    for(int nxt:e[now])
    {
        dfs(nxt, sta, col^1);
    }
}

int main()
{
    cin >> n >> m >> s >> t >> k;
    for(int i=0;i<m;i++)
    {
        cin >> a >> b;
        a--;b--;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    for(int i=0;i<n;i++)
    {
        dfs(i, i, 0);
    }
    s--;t--;
    if(color[s].first==color[t].first)
    {
        int bi1 = color[s].second;
        int bi2 = color[t].second;
        if(k%2 == bi1^bi2)
        {
            int dst;
            //到達できるか?
            queue<pair<int,int>>idx_len;
            idx_len.push({s,0});
            while(!idx_len.empty())
            {
                auto [idx, len] = idx_len.front();
                idx_len.pop();

                if(length[idx]) continue;
                length[idx] = true;

                if(idx==t) dst = len;
                for(int nxt:e[idx])
                {
                    idx_len.push({nxt, len+1});
                }
            }
            if(dst<=k)
            {
                cout << "Yes" << endl;
            }
            else
            {
                cout << "Unknown" << endl;
            }
        }
        else
        {
            cout << "No" << endl;
        }
    }
    else
    {
        cout << "Unknown" << endl;
    }
}
0