結果

問題 No.2301 Namorientation
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-12 22:54:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 516 ms / 3,000 ms
コード長 1,755 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 124,548 KB
実行使用メモリ 32,956 KB
最終ジャッジ日時 2024-05-06 12:57:27
合計ジャッジ時間 17,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 2 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 289 ms
12,672 KB
testcase_13 AC 259 ms
11,776 KB
testcase_14 AC 511 ms
18,816 KB
testcase_15 AC 323 ms
13,568 KB
testcase_16 AC 434 ms
16,636 KB
testcase_17 AC 302 ms
12,868 KB
testcase_18 AC 437 ms
16,896 KB
testcase_19 AC 239 ms
11,264 KB
testcase_20 AC 432 ms
16,640 KB
testcase_21 AC 318 ms
13,440 KB
testcase_22 AC 414 ms
32,956 KB
testcase_23 AC 410 ms
32,512 KB
testcase_24 AC 341 ms
27,648 KB
testcase_25 AC 289 ms
15,804 KB
testcase_26 AC 371 ms
19,592 KB
testcase_27 AC 508 ms
18,816 KB
testcase_28 AC 507 ms
18,944 KB
testcase_29 AC 516 ms
18,816 KB
testcase_30 AC 511 ms
18,736 KB
testcase_31 AC 510 ms
18,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int N;
vector<bool> iscycle, visit;
vector<int> ans, a, b;
void dfs(vector<vector<pair<int, int>>> &E, int from, int p){

    visit[from] = 1;
    for(auto [to, i] : E[from]){
        if (!iscycle[to]) continue;
        if (p == to) continue;
        if (a[i] == from && b[i] == to) ans[i] = 1;
        else ans[i] = -1;
        if (visit[to]){
            for (int j=0; j<N; j++) cout << (ans[j] == 1 ? "->" : "<-") << endl;
            exit(0);
        }
        dfs(E, to, from);
    }   
}

int main(){

    int from;
    cin >> N;
    vector<int> deg(N);
    a.resize(N); b.resize(N); ans.resize(N); visit.resize(N);
    iscycle.resize(N, 1);
    queue<int> que;
    vector<vector<pair<int, int>>> E(N);
    for (int i=0; i<N; i++){
        cin >> a[i] >> b[i]; a[i]--; b[i]--;
        E[a[i]].push_back({b[i], i});
        E[b[i]].push_back({a[i], i});
        deg[a[i]]++; deg[b[i]]++;
    }

    for (int i=0; i<N; i++){
        if (deg[i] == 1){
            que.push(i);
            deg[i]--;
        }
    }

    while(!que.empty()){
        from = que.front();
        iscycle[from] = 0;
        que.pop();
        for (auto [to, i] : E[from]){
            if (iscycle[to] == 0) continue;
            if (a[i] == from && b[i] == to) ans[i] = 1; //->
            else ans[i] = -1; //<-
            deg[to]--;
            if (deg[to] == 1) que.push(to);
        }
    }

    for (int i=0; i<N; i++){
        if (iscycle[i]){
            dfs(E, i, -1);
        }
    }

    return 0;
}
0