結果

問題 No.1647 Travel in Mitaru city 2
ユーザー SSRSSSRS
提出日時 2021-08-13 21:38:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,500 ms
コード長 1,600 bytes
コンパイル時間 1,658 ms
コンパイル使用メモリ 178,532 KB
実行使用メモリ 24,308 KB
最終ジャッジ日時 2024-10-13 03:13:19
合計ジャッジ時間 8,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 95 ms
22,444 KB
testcase_09 AC 91 ms
20,632 KB
testcase_10 AC 101 ms
22,492 KB
testcase_11 AC 85 ms
20,332 KB
testcase_12 AC 96 ms
20,288 KB
testcase_13 AC 98 ms
21,628 KB
testcase_14 AC 100 ms
22,872 KB
testcase_15 AC 102 ms
22,708 KB
testcase_16 AC 89 ms
21,884 KB
testcase_17 AC 93 ms
20,864 KB
testcase_18 AC 97 ms
22,456 KB
testcase_19 AC 98 ms
23,212 KB
testcase_20 AC 95 ms
21,128 KB
testcase_21 AC 101 ms
23,352 KB
testcase_22 AC 108 ms
23,384 KB
testcase_23 AC 105 ms
23,600 KB
testcase_24 AC 92 ms
21,272 KB
testcase_25 AC 93 ms
21,824 KB
testcase_26 AC 103 ms
23,636 KB
testcase_27 AC 104 ms
23,704 KB
testcase_28 AC 104 ms
24,132 KB
testcase_29 AC 108 ms
24,156 KB
testcase_30 AC 105 ms
22,340 KB
testcase_31 AC 106 ms
24,236 KB
testcase_32 AC 102 ms
24,060 KB
testcase_33 AC 99 ms
21,476 KB
testcase_34 AC 107 ms
24,308 KB
testcase_35 AC 106 ms
24,248 KB
testcase_36 AC 105 ms
24,260 KB
testcase_37 AC 104 ms
24,124 KB
testcase_38 AC 107 ms
20,620 KB
testcase_39 AC 95 ms
18,720 KB
testcase_40 AC 105 ms
20,472 KB
testcase_41 AC 90 ms
18,624 KB
testcase_42 AC 97 ms
20,440 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 7 ms
10,328 KB
testcase_45 AC 84 ms
15,276 KB
testcase_46 AC 89 ms
15,240 KB
testcase_47 AC 83 ms
15,228 KB
testcase_48 AC 82 ms
15,296 KB
testcase_49 AC 83 ms
15,208 KB
testcase_50 AC 87 ms
15,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
void dfs(vector<vector<pair<int, int>>> &E, vector<int> &d, vector<int> &p, vector<int> &p2, int v){
  for (auto P : E[v]){
    int w = P.first;
    int id = P.second;
    if (d[w] == -1){
      d[w] = d[v] + 1;
      p[w] = v;
      p2[w] = id;
      dfs(E, d, p, p2, w);
    }
  }
}
int main(){
  int H, W, N;
  cin >> H >> W >> N;
  vector<int> x(N), y(N);
  for (int i = 0; i < N; i++){
    cin >> x[i] >> y[i];
    x[i]--;
    y[i]--;
  }
  vector<vector<pair<int, int>>> E(H + W);
  for (int i = 0; i < N; i++){
    E[x[i]].push_back(make_pair(H + y[i], i));
    E[H + y[i]].push_back(make_pair(x[i], i));
  }
  vector<int> d(H + W, -1);
  vector<int> p(H + W, -1);
  vector<int> p2(H + W, -1);
  for (int i = 0; i < H + W; i++){
    if (d[i] == -1){
      d[i] = 0;
      dfs(E, d, p, p2, i);
    }
  }
  vector<int> T;
  for (int i = 0; i < H + W; i++){
    for (auto P : E[i]){
      int w = P.first;
      int id = P.second;
      if (i != p[w] && w != p[i]){
        int a = i, b = w;
        if (d[b] < d[a]){
          swap(a, b);
        }
        T.push_back(id);
        for (int v = b; v != a; v = p[v]){
          T.push_back(p2[v]);
        }
        break;
      }
    }
    if (!T.empty()){
      break;
    }
  }
  if (T.empty()){
    cout << -1 << endl;
  } else {
    if (y[T[0]] != y[T[1]]){
      rotate(T.begin(), T.begin() + 1, T.end());
    }
    int X = T.size();
    cout << X << endl;
    for (int i = 0; i < X; i++){
      cout << T[i] + 1;
      if (i < X - 1){
        cout << ' ';
      }
    }
    cout << endl;
  }
}
0