結果

問題 No.2301 Namorientation
ユーザー KudeKude
提出日時 2023-05-12 22:06:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 3,000 ms
コード長 2,082 bytes
コンパイル時間 2,896 ms
コンパイル使用メモリ 244,068 KB
実行使用メモリ 52,020 KB
最終ジャッジ日時 2024-11-28 18:29:45
合計ジャッジ時間 16,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 242 ms
18,376 KB
testcase_13 AC 190 ms
17,152 KB
testcase_14 AC 425 ms
28,564 KB
testcase_15 AC 246 ms
20,200 KB
testcase_16 AC 365 ms
25,108 KB
testcase_17 AC 224 ms
19,124 KB
testcase_18 AC 380 ms
25,552 KB
testcase_19 AC 201 ms
16,300 KB
testcase_20 AC 396 ms
25,288 KB
testcase_21 AC 271 ms
20,000 KB
testcase_22 AC 258 ms
52,020 KB
testcase_23 AC 255 ms
51,308 KB
testcase_24 AC 207 ms
43,380 KB
testcase_25 AC 171 ms
23,268 KB
testcase_26 AC 229 ms
29,204 KB
testcase_27 AC 445 ms
28,664 KB
testcase_28 AC 434 ms
28,796 KB
testcase_29 AC 452 ms
28,796 KB
testcase_30 AC 433 ms
28,800 KB
testcase_31 AC 453 ms
28,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  VVI to(n);
  vector<P> edges;
  rep(i, n) {
    int a, b;
    cin >> a >> b;
    a--, b--;
    to[a].emplace_back(b);
    to[b].emplace_back(a);
    edges.emplace_back(a, b);
  }
  vector<char> visited(n);
  VI st;
  VI cycle;
  auto dfs1 = [&](auto&& self, int u, int p) -> void {
    if (visited[u]) {
      cycle = VI(find(all(st), u), st.end());
      return;
    }
    visited[u] = true;
    st.emplace_back(u);
    for(int v: to[u]) if (v != p) {
      self(self, v, u);
      if (!cycle.empty()) return;
    }
    st.pop_back();
  };
  dfs1(dfs1, 0, -1);
  assert(cycle.size());
  vector<char> in_cycle(n);
  for(int v: cycle) {
    in_cycle[v] = true;
  }
  map<P, int> dir;
  auto add = [&](int u, int v) {
    assert(dir.count({min(u, v), max(u, v)}) == 0);
    if (u > v) dir[{v, u}] = 1;
    else dir[{u, v}] = 0;
  };
  rep(i, cycle.size()) {
    int u = cycle[i], v = cycle[(i + 1) % cycle.size()];
    add(u, v);
  }
  auto dfs2 = [&](auto&& self, int u, int p) -> void {
    for(int v: to[u]) if (v != p && !in_cycle[v]) {
      add(v, u);
      self(self, v, u);
    }
  };
  for(int r : cycle) dfs2(dfs2, r, -1);
  for(auto [u, v] : edges) {
    assert(dir.count({u, v}));
    int d = dir[{u, v}];
    cout << (d == 0 ? "->" : "<-") << '\n';
  }
}
0