結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 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 321 ms
88,924 KB
testcase_09 AC 294 ms
83,796 KB
testcase_10 AC 330 ms
91,316 KB
testcase_11 AC 228 ms
71,408 KB
testcase_12 AC 321 ms
86,796 KB
testcase_13 AC 320 ms
88,256 KB
testcase_14 AC 343 ms
92,844 KB
testcase_15 AC 338 ms
91,820 KB
testcase_16 AC 306 ms
85,212 KB
testcase_17 AC 274 ms
79,108 KB
testcase_18 AC 280 ms
81,944 KB
testcase_19 AC 301 ms
85,348 KB
testcase_20 AC 308 ms
85,928 KB
testcase_21 AC 306 ms
87,128 KB
testcase_22 AC 342 ms
94,280 KB
testcase_23 AC 344 ms
94,860 KB
testcase_24 AC 336 ms
91,240 KB
testcase_25 AC 315 ms
88,632 KB
testcase_26 AC 347 ms
95,100 KB
testcase_27 AC 351 ms
94,456 KB
testcase_28 AC 356 ms
95,800 KB
testcase_29 AC 351 ms
95,732 KB
testcase_30 AC 323 ms
91,012 KB
testcase_31 AC 348 ms
96,448 KB
testcase_32 AC 302 ms
88,316 KB
testcase_33 AC 296 ms
85,416 KB
testcase_34 AC 346 ms
96,476 KB
testcase_35 AC 349 ms
95,440 KB
testcase_36 AC 351 ms
96,304 KB
testcase_37 AC 351 ms
96,872 KB
testcase_38 AC 309 ms
87,208 KB
testcase_39 AC 281 ms
81,856 KB
testcase_40 AC 310 ms
86,464 KB
testcase_41 AC 288 ms
82,844 KB
testcase_42 AC 307 ms
86,732 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 6 ms
7,936 KB
testcase_45 AC 218 ms
72,360 KB
testcase_46 AC 312 ms
72,428 KB
testcase_47 AC 217 ms
72,392 KB
testcase_48 WA -
testcase_49 AC 218 ms
72,484 KB
testcase_50 AC 215 ms
72,372 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;
  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);
    }
  }
  if(ret.empty()) {
    cout << "-1\n";
  } else {
    assert(ret.size() >= 4);
    cout << ret.size() << "\n";
    cout << ret << "\n";
  }
}
0