結果

問題 No.2301 Namorientation
ユーザー NAMIDAIRONAMIDAIRO
提出日時 2023-05-13 11:59:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 526 ms / 3,000 ms
コード長 3,933 bytes
コンパイル時間 1,240 ms
コンパイル使用メモリ 123,412 KB
実行使用メモリ 31,368 KB
最終ジャッジ日時 2024-11-29 05:35:19
合計ジャッジ時間 17,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 295 ms
11,392 KB
testcase_13 AC 268 ms
10,624 KB
testcase_14 AC 523 ms
16,796 KB
testcase_15 AC 335 ms
12,288 KB
testcase_16 AC 445 ms
15,052 KB
testcase_17 AC 311 ms
11,696 KB
testcase_18 AC 460 ms
15,076 KB
testcase_19 AC 251 ms
10,368 KB
testcase_20 AC 446 ms
14,992 KB
testcase_21 AC 330 ms
12,176 KB
testcase_22 AC 413 ms
31,368 KB
testcase_23 AC 406 ms
30,968 KB
testcase_24 AC 336 ms
26,412 KB
testcase_25 AC 279 ms
14,188 KB
testcase_26 AC 369 ms
17,160 KB
testcase_27 AC 518 ms
16,796 KB
testcase_28 AC 513 ms
16,868 KB
testcase_29 AC 526 ms
16,828 KB
testcase_30 AC 522 ms
16,940 KB
testcase_31 AC 513 ms
16,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <set>
#include <random>
#include <iomanip>
#include <string>
#include <cmath>
#include <complex>
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)

template<class T>
using vi = vector<T>;

template<class T>
using vii = vector<vi<T>>;

template<class T>
using viii = vector<vii<T>>;

template<class T>
using viiii = vector<viii<T>>;

using P = pair<ll, int>;

void chmin(ll & x, ll y) { x = min(x, y); }

void chmax(ll& x, ll y) { x = max(x, y); }

struct mint {
    const long long mod = 998244353;
    long long x;
    mint(long long x_ = 0) : x((x_% mod + mod) % mod) {}

    mint& operator+=(const mint& other) {
        x += other.x;
        if (x >= mod) x -= mod;
        return *this;
    }
    mint& operator-=(const mint& other) {
        x -= other.x;
        if (x < 0) x += mod;
        return *this;
    }
    mint& operator*=(const mint& other) {
        x *= other.x;
        x %= mod;
        return *this;
    }

    mint& operator+=(const long long n) {
        return *this += mint(n);
    }
    mint& operator-=(const long long n) {
        return *this -= mint(n);
    }
    mint& operator*=(const long long n) {
        return *this *= mint(n);
    }

    mint& operator=(const mint& other) {
        x = other.x;
        return *this;
    }
    mint& operator=(const long long n) {
        x = n % mod;
        return *this;
    }

    bool operator==(const mint& other) const {
        return x == other.x;
    }
    bool operator!=(const mint& other) const {
        return x != other.x;
    }

    mint operator-() const {
        mint res(mod - x);
        return res;
    }

    mint operator+(const mint& other) const {
        mint res(x);
        return res += other;
    }
    mint operator-(const mint& other) const {
        mint res(x);
        return res -= other;
    }
    mint operator*(const mint& other) const {
        mint res(x);
        return res *= other;
    }

    mint operator+(const long long n) const {
        mint res(x);
        mint other(n);
        return res += other;
    }
    mint operator-(const long long n) const {
        mint res(x);
        mint other(n);
        return res -= other;
    }
    mint operator*(const long long n) const {
        mint res(x);
        mint other(n);
        return res *= other;
    }

    mint pow(long long n) const {
        if (n == 0) return mint(1);
        mint res = pow(n / 2);
        res *= res;
        if (n % 2) res *= *this;
        return res;
    }
    mint inv() const {
        return pow(mod - 2);
    }
    mint& operator/=(const mint& other) {
        *this *= other.inv();
        return *this;
    }
    mint operator/(const mint& other) const {
        mint res(x);
        return res /= other;
    }
};

struct edge {
    int to, idx;
};

int dfs(int v, int p, vii<edge>& to, vi<bool>& visited) {
    int res = -1;
    visited[v] = true;
    for (edge nv : to[v]) {
        if (nv.to == p) continue;
        if (visited[nv.to]) return nv.idx;
        res = max(res, dfs(nv.to, v, to, visited));
    }
    return res;
}

void dfs2(int v, vii<edge>& to, vi<bool>& visited, vi<bool>& ans) {
    visited[v] = true;
    for (edge nv : to[v]) {
        if (visited[nv.to]) continue;
        if (v > nv.to) ans[nv.idx] = true;
        dfs2(nv.to, to, visited, ans);
    }
}

int main()
{
    int n;
    cin >> n;
    vi<int> a(n), b(n);
    vii<edge> to(n);    
    rep(i, n) {
        cin >> a[i] >> b[i];
        a[i]--, b[i]--;
        to[a[i]].push_back({ b[i], i });
        to[b[i]].push_back({ a[i], i });        
    }

    vi<bool> visited(n);
    int pos = dfs(0, -1, to, visited);

    rep(i, n) visited[i] = false;
    vi<bool> ans(n);
    int rt = b[pos];
    dfs2(rt, to, visited, ans);

    rep(i, n) cout << (ans[i] ? "->" : "<-") << endl;

    return 0;
}

0