結果

問題 No.2674 k-Walk on Bipartite
ユーザー tnakao0123tnakao0123
提出日時 2024-04-26 13:51:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 58,616 KB
実行使用メモリ 13,676 KB
最終ジャッジ日時 2024-11-14 02:00:05
合計ジャッジ時間 3,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,840 KB
testcase_01 AC 3 ms
7,728 KB
testcase_02 AC 4 ms
8,384 KB
testcase_03 AC 4 ms
7,740 KB
testcase_04 AC 4 ms
7,996 KB
testcase_05 AC 4 ms
7,776 KB
testcase_06 AC 4 ms
7,784 KB
testcase_07 AC 59 ms
12,280 KB
testcase_08 AC 64 ms
11,928 KB
testcase_09 AC 46 ms
12,300 KB
testcase_10 AC 87 ms
12,712 KB
testcase_11 AC 54 ms
11,592 KB
testcase_12 AC 79 ms
12,332 KB
testcase_13 AC 47 ms
11,636 KB
testcase_14 AC 13 ms
9,496 KB
testcase_15 AC 100 ms
13,188 KB
testcase_16 AC 68 ms
12,740 KB
testcase_17 AC 61 ms
11,708 KB
testcase_18 AC 29 ms
10,260 KB
testcase_19 AC 55 ms
12,352 KB
testcase_20 AC 45 ms
12,084 KB
testcase_21 AC 71 ms
12,088 KB
testcase_22 AC 98 ms
13,676 KB
testcase_23 AC 4 ms
7,996 KB
testcase_24 AC 4 ms
7,752 KB
testcase_25 AC 4 ms
7,736 KB
testcase_26 AC 4 ms
7,596 KB
testcase_27 AC 3 ms
7,760 KB
testcase_28 AC 4 ms
7,764 KB
testcase_29 AC 4 ms
7,808 KB
testcase_30 AC 3 ms
7,740 KB
testcase_31 AC 3 ms
7,644 KB
testcase_32 AC 4 ms
7,748 KB
testcase_33 AC 4 ms
8,380 KB
testcase_34 AC 4 ms
7,792 KB
testcase_35 AC 3 ms
7,820 KB
testcase_36 AC 3 ms
7,752 KB
testcase_37 AC 4 ms
7,732 KB
testcase_38 AC 4 ms
7,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2674.cc:  No.2674 k-Walk on Bipartite - yukicoder
 */

#include<cstdio>
#include<vector>
#include<queue>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

typedef vector<int> vi;
typedef queue<int> qi;

/* global variables */

vi nbrs[MAX_N];
int ds[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, m, s, t, k;
  scanf("%d%d%d%d%d", &n, &m, &s, &t, &k);
  s--, t--;

  for (int i = 0; i < m; i++) {
    int u, v;
    scanf("%d%d", &u, &v);
    u--, v--;
    nbrs[u].push_back(v);
    nbrs[v].push_back(u);
  }

  fill(ds, ds + n, -1);
  ds[s] = 0;
  qi q;
  q.push(s);
  int sz = 1;

  while (! q.empty()) {
    int u = q.front(); q.pop();
    for (auto v: nbrs[u])
      if (ds[v] < 0) {
	ds[v] = ds[u] + 1, sz++;
	q.push(v);
      }
  }

  if (ds[t] >= 0) {
    if ((k - ds[t]) & 1) puts("No");
    else if (s == t) {
      if (sz > 1) puts("Yes");
      else if (n == 1) puts("No");
      else puts("Unknown");
    }
    else {
      if (s != t && ds[t] <= k) puts("Yes");
      else puts("Unknown");
    }
  }
  else {
    if (n == 2 && ! (k & 1)) puts("No");
    else puts("Unknown");
  }

  return 0;
}
0