結果

問題 No.2674 k-Walk on Bipartite
ユーザー 遭難者遭難者
提出日時 2024-03-16 13:08:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,887 bytes
コンパイル時間 7,585 ms
コンパイル使用メモリ 348,972 KB
実行使用メモリ 14,584 KB
最終ジャッジ日時 2024-03-16 13:08:44
合計ジャッジ時間 10,477 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 58 ms
12,708 KB
testcase_08 AC 76 ms
10,624 KB
testcase_09 AC 49 ms
12,744 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 AC 59 ms
10,624 KB
testcase_12 AC 96 ms
10,752 KB
testcase_13 AC 47 ms
11,564 KB
testcase_14 AC 15 ms
8,832 KB
testcase_15 AC 109 ms
13,084 KB
testcase_16 AC 76 ms
13,344 KB
testcase_17 AC 75 ms
10,368 KB
testcase_18 AC 29 ms
9,088 KB
testcase_19 AC 63 ms
12,132 KB
testcase_20 AC 55 ms
12,372 KB
testcase_21 AC 91 ms
11,136 KB
testcase_22 AC 123 ms
14,584 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 WA -
testcase_29 WA -
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 #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; i++)
#define per(i, n) for (int i = n - 1; i >= 0; i--)
#define ALL(a) a.begin(), a.end()
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using mint = atcoder::modint998244353;
istream &operator>>(istream &is, mint &a)
{
	int t;
	is >> t;
	a = t;
	return is;
}
ostream &operator<<(ostream &os, mint a)
{
	return os << a.val();
}
#endif
typedef long double ldouble;
#undef long
#define long long long
#define vec vector
template <typename T>
ostream &operator<<(ostream &os, vector<T> &a)
{
	const int n = a.size();
	rep(i, n)
	{
		os << a[i];
		if (i + 1 != n)
			os << " ";
	}
	return os;
}
template <typename T, size_t n>
ostream &operator<<(ostream &os, array<T, n> &a)
{
	rep(i, n) os << a[i] << " \n"[i + 1 == n];
	return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &a)
{
	for (T &i : a)
		is >> i;
	return is;
}
template <typename T, typename S>
bool chmin(T &x, S y)
{
	if (x > (T)y)
	{
		x = (T)y;
		return true;
	}
	return false;
}
template <typename T, typename S>
bool chmax(T &x, S y)
{
	if (x < (T)y)
	{
		x = (T)y;
		return true;
	}
	return false;
}
template <typename T>
void operator++(vector<T> &a)
{
	for (T &i : a)
		++i;
}
template <typename T>
void operator--(vector<T> &a)
{
	for (T &i : a)
		--i;
}
template <typename T>
void operator++(vector<T> &a, int)
{
	for (T &i : a)
		i++;
}
template <typename T>
void operator--(vector<T> &a, int)
{
	for (T &i : a)
		i--;
}
#undef endl
#define endl '\n'
void solve()
{
	int n, m;
	cin >> n >> m;
	if (n == 1)
	{
		cout << "No" << endl;
		return;
	}
	int s, t, k;
	cin >> s >> t >> k;
	s--, t--;
	vec<vec<int>> g(n);
	rep(i, m)
	{
		int a, b;
		cin >> a >> b;
		a--, b--;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	if (s == t)
	{
		if (k % 2 == 1)
		{
			cout << "No" << endl;
			return;
		}
		if (g[s].size() >= 1)
		{
			cout << "Yes" << endl;
			return;
		}
		cout << "Unknown" << endl;
		return;
	}
	vec<int> d(n);
	constexpr int inf = 1e9;
	vec<int> dist(n, inf);
	queue<int> q;
	q.push(s);
	d[s] = 1;
	dist[s] = 0;
	while (!q.empty())
	{
		int v = q.front();
		q.pop();
		for (int u : g[v])
		{
			if (d[u] == 0)
			{
				d[u] = -d[v];
				dist[u] = dist[v] + 1;
				q.push(u);
			}
		}
	}
	if (k % 2 == 1)
	{
		if (d[t] == 1)
		{
			cout << "No" << endl;
			return;
		}
		if (dist[t] <= k)
		{
			cout << "Yes" << endl;
			return;
		}
		cout << "Unknown" << endl;
		return;
	}
	if (d[t] == -1)
	{
		cout << "No" << endl;
		return;
	}
	if (dist[t] <= k)
	{
		cout << "Yes" << endl;
		return;
	}
	cout << "Unknown" << endl;
}
int main()
{
	// srand((unsigned)time(NULL));
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	// cout << fixed << setprecision(40);
	int t = 1;
	// cin >> t;
	while (t--)
		solve();
	return 0;
}
0