結果

問題 No.2674 k-Walk on Bipartite
ユーザー kotatsugamekotatsugame
提出日時 2024-03-15 21:43:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 15,452 KB
最終ジャッジ日時 2024-09-30 00:37:10
合計ジャッジ時間 3,345 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,508 KB
testcase_01 AC 5 ms
9,516 KB
testcase_02 AC 5 ms
9,668 KB
testcase_03 AC 5 ms
9,464 KB
testcase_04 AC 5 ms
9,572 KB
testcase_05 AC 4 ms
9,524 KB
testcase_06 AC 5 ms
9,484 KB
testcase_07 AC 53 ms
13,864 KB
testcase_08 AC 60 ms
13,524 KB
testcase_09 AC 44 ms
13,748 KB
testcase_10 AC 89 ms
14,360 KB
testcase_11 AC 51 ms
13,252 KB
testcase_12 AC 79 ms
13,948 KB
testcase_13 AC 47 ms
13,108 KB
testcase_14 AC 14 ms
11,028 KB
testcase_15 AC 96 ms
14,688 KB
testcase_16 AC 71 ms
14,348 KB
testcase_17 AC 63 ms
13,280 KB
testcase_18 AC 27 ms
11,848 KB
testcase_19 AC 51 ms
13,800 KB
testcase_20 AC 48 ms
13,652 KB
testcase_21 AC 68 ms
13,572 KB
testcase_22 AC 103 ms
15,452 KB
testcase_23 AC 5 ms
9,620 KB
testcase_24 AC 5 ms
9,600 KB
testcase_25 AC 5 ms
9,460 KB
testcase_26 AC 5 ms
9,692 KB
testcase_27 AC 5 ms
9,596 KB
testcase_28 AC 5 ms
9,480 KB
testcase_29 AC 5 ms
9,588 KB
testcase_30 AC 5 ms
9,548 KB
testcase_31 AC 5 ms
9,448 KB
testcase_32 AC 5 ms
9,600 KB
testcase_33 AC 5 ms
9,596 KB
testcase_34 AC 5 ms
9,580 KB
testcase_35 AC 5 ms
9,448 KB
testcase_36 AC 5 ms
9,476 KB
testcase_37 AC 5 ms
9,644 KB
testcase_38 AC 5 ms
9,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
#include<cassert>
using namespace std;
int N,M;
vector<int>G[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int s,t,k;
	cin>>N>>M>>s>>t>>k;
	s--,t--;
	for(int i=0;i<M;i++)
	{
		int a,b;cin>>a>>b;
		a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	if(s==t)
	{
		if(N==1||k%2==1)cout<<"No\n";
		else
		{
			if(!G[s].empty())cout<<"Yes\n";
			else cout<<"Unknown\n";
		}
		return 0;
	}
	queue<int>Q;
	Q.push(s);
	vector<int>dist(N,(int)1e9);
	dist[s]=0;
	while(!Q.empty())
	{
		int u=Q.front();Q.pop();
		for(int v:G[u])
		{
			if(dist[v]>dist[u]+1)
			{
				dist[v]=dist[u]+1;
				Q.push(v);
			}
		}
	}
	if(dist[t]==(int)1e9)
	{
		if(k%2==1)cout<<"Unknown\n";
		else
		{
			if(N>=3)cout<<"Unknown\n";
			else cout<<"No\n";
		}
	}
	else if(dist[t]%2==1)
	{
		if(k%2==0)cout<<"No\n";
		else
		{
			if(dist[t]<=k)cout<<"Yes\n";
			else cout<<"Unknown\n";
		}
	}
	else
	{
		if(k%2==1)cout<<"No\n";
		else
		{
			if(dist[t]<=k)cout<<"Yes\n";
			else cout<<"Unknown\n";
		}
	}
}
0