結果

問題 No.1647 Travel in Mitaru city 2
ユーザー ei1333333ei1333333
提出日時 2021-08-13 22:33:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 6,274 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 212,192 KB
実行使用メモリ 96,948 KB
最終ジャッジ日時 2024-04-14 18:52:49
合計ジャッジ時間 19,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 309 ms
89,092 KB
testcase_09 AC 288 ms
83,800 KB
testcase_10 AC 317 ms
90,408 KB
testcase_11 AC 219 ms
71,660 KB
testcase_12 AC 310 ms
86,920 KB
testcase_13 AC 307 ms
88,300 KB
testcase_14 AC 329 ms
93,368 KB
testcase_15 AC 331 ms
92,052 KB
testcase_16 AC 300 ms
85,288 KB
testcase_17 AC 269 ms
79,236 KB
testcase_18 AC 270 ms
81,944 KB
testcase_19 AC 293 ms
85,304 KB
testcase_20 AC 299 ms
85,796 KB
testcase_21 AC 307 ms
87,252 KB
testcase_22 AC 340 ms
94,896 KB
testcase_23 AC 342 ms
94,220 KB
testcase_24 AC 327 ms
90,720 KB
testcase_25 AC 315 ms
88,824 KB
testcase_26 AC 340 ms
94,336 KB
testcase_27 AC 341 ms
94,920 KB
testcase_28 AC 345 ms
96,496 KB
testcase_29 AC 347 ms
96,376 KB
testcase_30 AC 324 ms
90,860 KB
testcase_31 AC 350 ms
96,948 KB
testcase_32 AC 298 ms
87,548 KB
testcase_33 AC 290 ms
85,728 KB
testcase_34 AC 355 ms
96,080 KB
testcase_35 AC 353 ms
95,508 KB
testcase_36 AC 348 ms
96,008 KB
testcase_37 AC 348 ms
96,884 KB
testcase_38 AC 317 ms
87,236 KB
testcase_39 AC 281 ms
81,988 KB
testcase_40 AC 316 ms
86,624 KB
testcase_41 AC 296 ms
82,844 KB
testcase_42 AC 312 ms
87,020 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 5 ms
7,908 KB
testcase_45 AC 219 ms
72,832 KB
testcase_46 AC 310 ms
72,764 KB
testcase_47 AC 219 ms
72,844 KB
testcase_48 WA -
testcase_49 AC 225 ms
72,760 KB
testcase_50 AC 220 ms
72,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using int64 = long long;
// const int mod = 1e9 + 7;
const int mod = 998244353;

const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;

struct IoSetup {
  IoSetup() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    cerr << fixed << setprecision(10);
  }
} iosetup;


template< typename T1, typename T2 >
ostream &operator<<(ostream &os, const pair< T1, T2 > &p) {
  os << p.first << " " << p.second;
  return os;
}

template< typename T1, typename T2 >
istream &operator>>(istream &is, pair< T1, T2 > &p) {
  is >> p.first >> p.second;
  return is;
}

template< typename T >
ostream &operator<<(ostream &os, const vector< T > &v) {
  for(int i = 0; i < (int) v.size(); i++) {
    os << v[i] << (i + 1 != v.size() ? " " : "");
  }
  return os;
}

template< typename T >
istream &operator>>(istream &is, vector< T > &v) {
  for(T &in : v) is >> in;
  return is;
}

template< typename T1, typename T2 >
inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }

template< typename T1, typename T2 >
inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

template< typename T = int64 >
vector< T > make_v(size_t a) {
  return vector< T >(a);
}

template< typename T, typename... Ts >
auto make_v(size_t a, Ts... ts) {
  return vector< decltype(make_v< T >(ts...)) >(a, make_v< T >(ts...));
}

template< typename T, typename V >
typename enable_if< is_class< T >::value == 0 >::type fill_v(T &t, const V &v) {
  t = v;
}

template< typename T, typename V >
typename enable_if< is_class< T >::value != 0 >::type fill_v(T &t, const V &v) {
  for(auto &e : t) fill_v(e, v);
}

template< typename F >
struct FixPoint : F {
  FixPoint(F &&f) : F(forward< F >(f)) {}

  template< typename... Args >
  decltype(auto) operator()(Args &&... args) const {
    return F::operator()(*this, forward< Args >(args)...);
  }
};

template< typename F >
inline decltype(auto) MFP(F &&f) {
  return FixPoint< F >{forward< F >(f)};
}

template< typename T = int >
struct Edge {
  int from, to;
  T cost;
  int idx;

  Edge() = default;

  Edge(int from, int to, T cost = 1, int idx = -1) : from(from), to(to), cost(cost), idx(idx) {}

  operator int() const { return to; }
};

template< typename T = int >
struct Graph {
  vector< vector< Edge< T > > > g;
  int es;

  Graph() = default;

  explicit Graph(int n) : g(n), es(0) {}

  size_t size() const {
    return g.size();
  }

  void add_directed_edge(int from, int to, T cost = 1) {
    g[from].emplace_back(from, to, cost, es++);
  }

  void add_edge(int from, int to, T cost = 1) {
    g[from].emplace_back(from, to, cost, es);
    g[to].emplace_back(to, from, cost, es++);
  }

  void read(int M, int padding = -1, bool weighted = false, bool directed = false) {
    for(int i = 0; i < M; i++) {
      int a, b;
      cin >> a >> b;
      a += padding;
      b += padding;
      T c = T(1);
      if(weighted) cin >> c;
      if(directed) add_directed_edge(a, b, c);
      else add_edge(a, b, c);
    }
  }
};

template< typename T = int >
using Edges = vector< Edge< T > >;

/**
 * @brief Cycle Detection(閉路検出)
 * @docs docs/cycle-detection.md
 */
template< typename T = int >
struct CycleDetection : Graph< T > {
  using Graph< T >::Graph;
  using Graph< T >::g;

  vector< int > used;
  Edges< T > pre, cyrcle;

  bool dfs(int idx) {
    used[idx] = 1;
    for(auto &e : g[idx]) {
      if(used[e] == 0) {
        pre[e] = e;
        if(dfs(e)) return true;
      } else if(used[e] == 1) {
        int cur = idx;
        while(cur != e) {
          cyrcle.emplace_back(pre[cur]);
          cur = pre[cur].from;
        }
        cyrcle.emplace_back(e);
        return true;
      }
    }

    used[idx] = 2;
    return false;
  }

  Edges< T > build() {
    used.assign(g.size(), 0);
    pre.resize(g.size());
    for(int i = 0; i < (int) g.size(); i++) {
      if(used[i] == 0 && dfs(i)) {
        reverse(begin(cyrcle), end(cyrcle));
        return cyrcle;
      }
    }
    return {};
  }
};

int main() {
  int H, W, N;
  cin >> H >> W >> N;
  vector< int > Y(N), X(N);
  for(int i = 0; i < N; i++) {
    cin >> Y[i] >> X[i];
    --Y[i], --X[i];
  }

  vector< vector< int > > ys(H), xs(W);
  for(int i = 0; i < N; i++) {
    ys[Y[i]].emplace_back(i);
    xs[X[i]].emplace_back(i);
  }
  CycleDetection<> g(N * 8);
  for(int i = 0; i < N; i++) {
    g.add_directed_edge(i, i + N);
    g.add_directed_edge(i + N + N, i + N + N + N);
  }
  int N4 = N + N + N + N;
  int N5 = N4 + N;
  int N6 = N5 + N;
  int N7 = N6 + N;
  for(int i = 0; i < W; i++) {
    for(int j = 1; j < xs[i].size(); j++) {
      g.add_directed_edge(xs[i][j - 1] + N4, xs[i][j] + N4);
      g.add_directed_edge(xs[i][j] + N5, xs[i][j - 1] + N5);
    }
    for(int j = 0; j < xs[i].size(); j++) {
      g.add_directed_edge(xs[i][j] + N4, xs[i][j] + N + N);
      g.add_directed_edge(xs[i][j] + N5, xs[i][j] + N + N);
      if(j > 0) {
        g.add_directed_edge(xs[i][j] + N, xs[i][j - 1] + N5);
      }
      if(j + 1 < xs[i].size()) {
        g.add_directed_edge(xs[i][j] + N, xs[i][j + 1] + N4);
      }
    }
  }
  for(int i = 0; i < H; i++) {
    for(int j = 1; j < ys[i].size(); j++) {
      g.add_directed_edge(ys[i][j - 1] + N6, ys[i][j] + N6);
      g.add_directed_edge(ys[i][j] + N7, ys[i][j - 1] + N7);
    }
    for(int j = 0; j < ys[i].size(); j++) {
      g.add_directed_edge(ys[i][j] + N6, ys[i][j]);
      g.add_directed_edge(ys[i][j] + N7, ys[i][j]);
      if(j > 0) {
        g.add_directed_edge(ys[i][j] + N + N + N, ys[i][j - 1] + N7);
      }
      if(j + 1 < ys[i].size()) {
        g.add_directed_edge(ys[i][j] + N + N + N, ys[i][j + 1] + N6);
      }
    }
  }
  g.build();
  vector< int > ret;
  vector< int > used(N + 1);
  for(auto &p : g.cyrcle) {
    if(0 <= p.from and p.from < N) {
      ret.emplace_back(p.from + 1);
    } else if(N + N <= p.from and p.from < N + N + N) {
      ret.emplace_back(p.from - N - N + 1);
    } else {
      continue;
    }
    if(used[ret.back()]) {
      ret.clear();
      break;
    }
    used[ret.back()] = true;
  }
  if(ret.empty()) {
    cout << "-1\n";
  } else {
    assert(ret.size() >= 4);
    cout << ret.size() << "\n";
    cout << ret << "\n";
  }
}
0