結果

問題 No.2674 k-Walk on Bipartite
ユーザー tour2sttour2st
提出日時 2024-03-15 22:59:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,828 bytes
コンパイル時間 1,142 ms
コンパイル使用メモリ 105,768 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-09-30 02:34:46
合計ジャッジ時間 4,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,320 KB
testcase_01 AC 5 ms
8,320 KB
testcase_02 AC 4 ms
8,192 KB
testcase_03 AC 4 ms
8,192 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 4 ms
8,192 KB
testcase_07 AC 121 ms
15,232 KB
testcase_08 AC 167 ms
18,048 KB
testcase_09 AC 109 ms
15,104 KB
testcase_10 AC 195 ms
20,224 KB
testcase_11 AC 112 ms
14,976 KB
testcase_12 AC 213 ms
20,992 KB
testcase_13 AC 103 ms
14,464 KB
testcase_14 AC 26 ms
11,648 KB
testcase_15 AC 209 ms
19,456 KB
testcase_16 AC 143 ms
16,384 KB
testcase_17 AC 148 ms
16,512 KB
testcase_18 AC 58 ms
12,416 KB
testcase_19 AC 128 ms
15,616 KB
testcase_20 AC 111 ms
15,232 KB
testcase_21 AC 157 ms
17,024 KB
testcase_22 AC 214 ms
19,584 KB
testcase_23 AC 5 ms
8,064 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 4 ms
8,192 KB
testcase_27 AC 4 ms
8,192 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 5 ms
8,320 KB
testcase_31 AC 4 ms
8,064 KB
testcase_32 AC 5 ms
8,320 KB
testcase_33 AC 4 ms
8,192 KB
testcase_34 AC 5 ms
8,192 KB
testcase_35 AC 4 ms
8,064 KB
testcase_36 AC 4 ms
8,192 KB
testcase_37 AC 4 ms
8,064 KB
testcase_38 AC 5 ms
8,192 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:23: note: 'dst' was declared here
   51 |             long long 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;

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

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

int main()
{
    cin >> n >> m >> s >> t >> k;
    for(long long i=0;i<m;i++)
    {
        cin >> a >> b;
        a--;b--;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    for(long long i=0;i<n;i++)
    {
        dfs(i, i, 0);
    }
    s--;t--;
    if(color[s].first==color[t].first)
    {
        long long bi1 = color[s].second;
        long long bi2 = color[t].second;
        if(k%2 == bi1^bi2)
        {
            long long dst;
            //到達できるか?
            queue<pair<long long,long long>>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(long long 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