結果

問題 No.2674 k-Walk on Bipartite
ユーザー tour2sttour2st
提出日時 2024-03-15 23:23:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,041 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 98,024 KB
実行使用メモリ 16,312 KB
最終ジャッジ日時 2024-09-30 02:57:50
合計ジャッジ時間 3,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,192 KB
testcase_01 AC 3 ms
8,136 KB
testcase_02 AC 3 ms
8,320 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 82 ms
12,928 KB
testcase_08 AC 112 ms
14,208 KB
testcase_09 AC 69 ms
11,904 KB
testcase_10 AC 126 ms
15,616 KB
testcase_11 AC 78 ms
12,888 KB
testcase_12 AC 132 ms
15,232 KB
testcase_13 AC 63 ms
11,520 KB
testcase_14 AC 16 ms
9,216 KB
testcase_15 AC 139 ms
16,196 KB
testcase_16 AC 91 ms
13,568 KB
testcase_17 AC 97 ms
13,824 KB
testcase_18 AC 38 ms
10,496 KB
testcase_19 AC 79 ms
12,032 KB
testcase_20 AC 68 ms
12,296 KB
testcase_21 AC 104 ms
14,464 KB
testcase_22 AC 148 ms
16,312 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 4 ms
8,192 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 3 ms
8,320 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 3 ms
8,192 KB
testcase_36 AC 3 ms
8,192 KB
testcase_37 AC 2 ms
8,192 KB
testcase_38 AC 3 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

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];
int length[200000];
bool visited[200000];

void dfs(int now, int len=0)
{
    if(visited[now]) return;
    visited[now]=true;
    length[now]=len;
    for(int nxt:e[now]) dfs(nxt, len+1);
}

int main()
{
    cin >> n >> m >> s >> t >> k;
    if(s==t) exit(1);
    for(int i=0;i<m;i++)
    {
        cin >> a >> b;
        a--;b--;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    s--;t--;
    dfs(s);
    if(visited[t])
    {
        if(length[t]%2!=k%2)
        {
            cout << "No" << endl;
        }
        else
        {
            if(length[t]<=k)
            {
                cout << "Yes" << endl;
            }
            else
            {
                cout << "Unknown" << endl;
            }
        }
    }
    else
    {
        cout << "Unknown" << endl;
    }
}
0