結果

問題 No.2301 Namorientation
ユーザー FplusFplusFFplusFplusF
提出日時 2023-05-12 22:08:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,441 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 221,096 KB
実行使用メモリ 65,840 KB
最終ジャッジ日時 2024-05-06 12:08:37
合計ジャッジ時間 18,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
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 1 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 263 ms
65,840 KB
testcase_23 AC 258 ms
64,924 KB
testcase_24 AC 218 ms
54,788 KB
testcase_25 AC 176 ms
35,436 KB
testcase_26 AC 231 ms
45,140 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
        }
    }
    v.pop_back();
}
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);
    rep(i,s.size()){
        ll x=s[i];
        ll y=s[(i+1)%(ll)s.size()];
        if(x<y) ans[mp[{x,y}]]=1;
        else ans[mp[{x,y}]]=0;
    }
    rep(i,n){
        if(ans[i]!=-1) continue;
        if((ll)g[a[i]].size()<(ll)g[b[i]].size()) ans[i]=1;
        else ans[i]=0;
    }
    rep(i,n){
        if(ans[i]==0) cout << "<-\n";
        else cout << "->\n";
    }
}
0