結果

問題 No.2301 Namorientation
ユーザー KudeKude
提出日時 2023-05-12 21:54:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,021 bytes
コンパイル時間 2,796 ms
コンパイル使用メモリ 243,552 KB
実行使用メモリ 22,604 KB
最終ジャッジ日時 2024-05-06 11:44:10
合計ジャッジ時間 8,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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(char v: cycle) in_cycle[v] = true;
  map<P, int> dir;
  auto add = [&](int u, int v) {
    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