結果

問題 No.2301 Namorientation
ユーザー FplusFplusFFplusFplusF
提出日時 2023-05-12 22:33:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 734 ms / 3,000 ms
コード長 1,843 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 222,780 KB
実行使用メモリ 69,284 KB
最終ジャッジ日時 2024-05-06 12:37:03
合計ジャッジ時間 20,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 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 324 ms
29,184 KB
testcase_13 AC 290 ms
26,752 KB
testcase_14 AC 713 ms
46,464 KB
testcase_15 AC 426 ms
31,872 KB
testcase_16 AC 520 ms
40,320 KB
testcase_17 AC 335 ms
30,336 KB
testcase_18 AC 605 ms
41,088 KB
testcase_19 AC 305 ms
25,344 KB
testcase_20 AC 525 ms
40,704 KB
testcase_21 AC 368 ms
31,616 KB
testcase_22 AC 291 ms
69,284 KB
testcase_23 AC 287 ms
68,340 KB
testcase_24 AC 236 ms
58,056 KB
testcase_25 AC 178 ms
36,584 KB
testcase_26 AC 239 ms
46,680 KB
testcase_27 AC 734 ms
46,592 KB
testcase_28 AC 716 ms
46,592 KB
testcase_29 AC 728 ms
46,464 KB
testcase_30 AC 710 ms
46,592 KB
testcase_31 AC 703 ms
46,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
vector<vector<ll>> g;
vector<bool> vis;
vector<ll> v,s={};
void dfs(ll x,ll p){
    v.push_back(x);
    vis[x]=true;
    for(auto &i:g[x]){
        if(i==p) continue;
        if(!vis[i]) dfs(i,x);
        else{
            if((ll)s.size()==0){
                s=v;
                s.push_back(i);
            }
        }
    }
    v.pop_back();
}
vector<ll> dist;
void dfs(ll x){
    for(auto &i:g[x]){
        if(dist[i]==-1){
            dist[i]=dist[x]+1;
            dfs(i);
        }
    }
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    g.resize(n);
    vis.resize(n,false);
    map<pll,ll> mp;
    vector<ll> ans(n,-1);
    vector<ll> a(n),b(n);
    rep(i,n){
        cin >> a[i] >> b[i];
        a[i]--;
        b[i]--;
        g[a[i]].push_back(b[i]);
        g[b[i]].push_back(a[i]);
        mp[{a[i],b[i]}]=i;
        mp[{b[i],a[i]}]=i;
    }
    dfs(0,-1);
    vector<ll> s2;
    bool ok=false;
    for(auto &i:s){
        if(ok) s2.push_back(i);
        if(i==s.back()) ok=true;
    }
    rep(i,s2.size()){
        ll x=s2[i];
        ll y=s2[(i+1)%(ll)s2.size()];
        if(x<y) ans[mp[{x,y}]]=1;
        else ans[mp[{x,y}]]=0;
    }
    dist.resize(n,-1);
    dist[s2.front()]=0;
    dfs(s2.front());
    rep(i,n){
        if(ans[i]!=-1) continue;
        if((ll)dist[a[i]]<dist[b[i]]) ans[i]=0;
        else ans[i]=1;
    }
    rep(i,n){
        if(ans[i]==0) cout << "<-\n";
        else cout << "->\n";
    }
}
0