結果

問題 No.1190 Points
ユーザー kk
提出日時 2020-09-05 03:15:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 212,628 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-05-05 08:49:14
合計ジャッジ時間 7,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 101 ms
16,128 KB
testcase_04 AC 62 ms
14,848 KB
testcase_05 AC 113 ms
13,952 KB
testcase_06 AC 80 ms
18,688 KB
testcase_07 AC 159 ms
19,780 KB
testcase_08 AC 205 ms
20,008 KB
testcase_09 AC 195 ms
18,688 KB
testcase_10 AC 212 ms
20,064 KB
testcase_11 AC 128 ms
15,104 KB
testcase_12 AC 193 ms
19,660 KB
testcase_13 AC 113 ms
13,312 KB
testcase_14 AC 26 ms
14,080 KB
testcase_15 AC 207 ms
19,584 KB
testcase_16 AC 13 ms
8,192 KB
testcase_17 AC 169 ms
19,072 KB
testcase_18 AC 64 ms
9,416 KB
testcase_19 AC 25 ms
16,568 KB
testcase_20 AC 95 ms
11,432 KB
testcase_21 AC 27 ms
11,904 KB
testcase_22 AC 38 ms
17,408 KB
testcase_23 AC 203 ms
19,968 KB
testcase_24 AC 201 ms
20,096 KB
testcase_25 AC 82 ms
19,584 KB
testcase_26 AC 60 ms
19,200 KB
testcase_27 AC 70 ms
19,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
const int INF = 1e9;

int n, m, p;
int s, g;
vector<int> edges[100000];

vector<vector<int> > calc(int v) {
  vector<vector<int> > dist(n, vector<int>(2, INF));
  queue<pair<int, int> > q;
  q.emplace(v, 0);
  dist[v][0] = 0;
  while (!q.empty()) {
    int u, parity;
    tie(u, parity) = q.front();
    q.pop();
    for (int w: edges[u]) {
      if (dist[w][!parity] == INF) {
        dist[w][!parity] = dist[u][parity] + 1;
        q.emplace(w, !parity);
      }
    }
  }
  return dist;
}


int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  
  cin >> n >> m >> p;
  cin >> s >> g;
  --s, --g;
  REP (i, m) {
    int u, v;
    cin >> u >> v;
    --u, --v;
    edges[u].push_back(v);
    edges[v].push_back(u);
  }

  auto d1 = calc(s), d2 = calc(g);
  vector<int> ret;

  REP (k, n) {
    bool ck = false;
    REP (i, 2) REP (j, 2) {
      int d = d1[k][i] + d2[k][j];
      if (d <= p && (p - d) % 2 == 0)
        ck = true;
    }
    if (ck)
      ret.push_back(k);
  }

  if (ret.empty())
    cout << -1 << endl;
  else {
    cout << ret.size() << endl;
    for (auto k: ret)
      cout << (k + 1) << endl;
  }
  
  return 0;
}

0