結果

問題 No.2301 Namorientation
ユーザー umimelumimel
提出日時 2023-05-13 12:41:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 422 ms / 3,000 ms
コード長 4,066 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 186,724 KB
実行使用メモリ 44,632 KB
最終ジャッジ日時 2024-05-06 20:05:15
合計ジャッジ時間 16,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 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 AC 234 ms
15,740 KB
testcase_13 AC 202 ms
14,656 KB
testcase_14 AC 403 ms
24,124 KB
testcase_15 AC 244 ms
17,068 KB
testcase_16 AC 329 ms
21,016 KB
testcase_17 AC 253 ms
16,364 KB
testcase_18 AC 340 ms
21,400 KB
testcase_19 AC 187 ms
14,032 KB
testcase_20 AC 380 ms
21,172 KB
testcase_21 AC 257 ms
16,904 KB
testcase_22 AC 354 ms
44,632 KB
testcase_23 AC 352 ms
44,020 KB
testcase_24 AC 291 ms
37,392 KB
testcase_25 AC 237 ms
20,064 KB
testcase_26 AC 309 ms
24,996 KB
testcase_27 AC 422 ms
23,996 KB
testcase_28 AC 394 ms
24,140 KB
testcase_29 AC 421 ms
24,188 KB
testcase_30 AC 415 ms
24,088 KB
testcase_31 AC 413 ms
24,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60;
const int IINF = 1 << 30;

template<typename T> struct Edge{
    int to; T w;
    Edge(int to_, T w_=1){
        to = to_;
        w=w_;
    }
};
template<typename T> using Tree = vector<vector<Edge<T>>>;
template<typename T> using Graph = vector<vector<Edge<T>>>;
/* 容量&重み付きエッジ for Dinic */
template<typename T> struct REdge{
    int to;
    T cap;
    T cost;
    int rev;
    REdge(int to_, T cap_, T cost_=1){
        to = to_;
        cap = cap_;
        cost = cost_;
    }
    
    REdge(int to_, T cap_, T cost_, int rev_){
        to = to_;
        cap = cap_;
        cost = cost_;
        rev = rev_;
    }
};

/* 残余グラフ for Dinic */
template<typename T> using RGraph = vector<vector<REdge<T>>>;

template<typename T>
struct Namori{
    int n;
    vector<int> root; //root[閉路上の頂点]=自身の頂点, root[閉路外の頂点]=根頂点
    vector<int> par; //par[閉路上の頂点]=-1, par[閉路外の頂点]=親頂点

    Namori(Graph<T> &graph){
        n = (int)graph.size();
        root.resize(n, 0); for(int v=0; v<n; v++) root[v]=v;
        par.resize(n, -1);
        init(graph);
    }

    void init(Graph<T> &graph){
        //閉路上の頂点を決定
        vector<int> deg(n, 0);
        for(int v=0; v<n; v++) deg[v] = (int)graph[v].size();
        queue<int> Q;
        for(int v=0; v<n; v++) if(deg[v]==1) Q.push(v);

        while(!Q.empty()){
            int v = Q.front();
            Q.pop();
            root[v] = -1;
            for(Edge<T> e : graph[v]){
                deg[e.to]--;
                if(deg[e.to]==1) Q.push(e.to);
            }
        }

        function<void(int, int)> dfs = [&](int v, int p){
            root[v] = root[p];
            par[v] = p;
            for(Edge<T> e : graph[v]) if(e.to != p) dfs(e.to, v);
        };

        for(ll r=0; r<n; r++){
            if(root[r]!=r) continue;
            for(Edge<T> e : graph[r]){
                if(root[e.to]==e.to) continue;
                dfs(e.to, r);
            }
        }
    }

    int get_root(int v){return root[v];}
    int get_par(int v){return par[v];}
};

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int n; cin >> n;
    Graph<int> G(n);
    vector<pair<int, int>> E(n);
    rep(i, n){
        int a, b; cin >> a >> b;
        a--; b--;
        G[a].pb(Edge<int>(b));
        G[b].pb(Edge<int>(a));
        E[i] = {a, b};
    }

    Namori<int> nmr(G);
    vector<int> ans(n, -1);
    for(int i=0; i<n; i++){
        if(nmr.get_root(E[i].fi)==E[i].fi && nmr.get_root(E[i].se)==E[i].se) continue;
        if(nmr.get_par(E[i].fi)==E[i].se) ans[i] = 0;
        else ans[i] = 1;
    }

    vector<vector<pair<int, int>>> Cycle(n);
    int s = 0;
    for(int i=0; i<n; i++){
        if(nmr.get_root(E[i].fi)==E[i].fi && nmr.get_root(E[i].se)==E[i].se){
            Cycle[E[i].fi].pb({E[i].se, i});
            Cycle[E[i].se].pb({E[i].fi, i});
            s = E[i].fi;
        }

    }

    int t = Cycle[s][0].fi;
    if(E[Cycle[s][0].se].fi==s) ans[Cycle[s][0].se] = 0;
    else ans[Cycle[s][0].se] = 1;

    function<void(int, int)> dfs = [&](int u, int p){
        if(u == s) return;
        for(pair<int, int> tmp : Cycle[u]){
            int v = tmp.fi;
            int idx = tmp.se;
            if(p == v) continue;
            if(E[idx].fi==u) ans[idx] = 0;
            else ans[idx] = 1;
            dfs(v, u);
        }
    };

    dfs(t, s);
    for(int i=0; i<n; i++){
        if(ans[i]==0) cout << "->" << endl;
        else cout << "<-" << endl;
    }
}
0