結果

問題 No.2301 Namorientation
ユーザー RubikunRubikun
提出日時 2023-05-12 21:31:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 256 ms / 3,000 ms
コード長 1,960 bytes
コンパイル時間 3,156 ms
コンパイル使用メモリ 214,048 KB
実行使用メモリ 29,780 KB
最終ジャッジ日時 2023-08-19 03:59:01
合計ジャッジ時間 14,737 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,412 KB
testcase_01 AC 5 ms
10,400 KB
testcase_02 AC 5 ms
10,408 KB
testcase_03 AC 5 ms
10,460 KB
testcase_04 AC 5 ms
10,400 KB
testcase_05 AC 5 ms
10,396 KB
testcase_06 AC 5 ms
10,396 KB
testcase_07 AC 5 ms
10,412 KB
testcase_08 AC 5 ms
10,392 KB
testcase_09 AC 5 ms
10,484 KB
testcase_10 AC 5 ms
10,560 KB
testcase_11 AC 5 ms
10,476 KB
testcase_12 AC 131 ms
21,412 KB
testcase_13 AC 123 ms
20,324 KB
testcase_14 AC 256 ms
28,716 KB
testcase_15 AC 144 ms
22,920 KB
testcase_16 AC 202 ms
26,056 KB
testcase_17 AC 136 ms
21,924 KB
testcase_18 AC 235 ms
26,612 KB
testcase_19 AC 103 ms
19,784 KB
testcase_20 AC 206 ms
26,448 KB
testcase_21 AC 145 ms
22,392 KB
testcase_22 AC 139 ms
29,780 KB
testcase_23 AC 138 ms
29,324 KB
testcase_24 AC 115 ms
26,152 KB
testcase_25 AC 68 ms
25,080 KB
testcase_26 AC 90 ms
29,552 KB
testcase_27 AC 246 ms
28,972 KB
testcase_28 AC 242 ms
28,972 KB
testcase_29 AC 247 ms
28,984 KB
testcase_30 AC 245 ms
29,096 KB
testcase_31 AC 246 ms
28,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=1<<30;

vector<int> G[MAX];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int N;cin>>N;
    vector<pair<int,int>> A(N);
    set<pair<int,int>> E;
    vector<int> deg(N);
    for(int i=0;i<N;i++){
        int a,b;cin>>a>>b;a--;b--;
        G[a].push_back(b);
        G[b].push_back(a);
        deg[a]++;
        deg[b]++;
        A[i]=mp(a,b);
    }
    
    queue<int> Q;
    for(int i=0;i<N;i++){
        if(deg[i]==1) Q.push(i);
    }
    
    while(!Q.empty()){
        int u=Q.front();Q.pop();
        for(int to:G[u]){
            if(deg[to]==0) continue;
            E.insert(mp(u,to));
            deg[u]--;
            deg[to]--;
            if(deg[to]==1) Q.push(to);
        }
    }
    
    for(int i=0;i<N;i++){
        if(deg[i]==2){
            vector<int> used(N);
            int now=i;
            vector<int> X;
            while(1){
                if(used[now]) break;
                used[now]=true;
                X.push_back(now);
                
                int nex=-1;
                for(int to:G[now]){
                    if(deg[to]==2&&!used[to]) nex=to;
                }
                
                if(nex!=-1) now=nex;
            }
            
            for(int j=0;j<si(X);j++){
                E.insert(mp(X[j],X[(j+1)%si(X)]));
            }
            
            break;
        }
    }
    
    for(auto [a,b]:A){
        if(E.count(mp(a,b))) cout<<"->\n";
        else cout<<"<-\n";
    }
}
0