結果

問題 No.2301 Namorientation
ユーザー hiro71687khiro71687k
提出日時 2023-05-16 19:17:40
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 944 ms / 3,000 ms
コード長 1,427 bytes
コンパイル時間 4,613 ms
コンパイル使用メモリ 278,168 KB
実行使用メモリ 46,616 KB
最終ジャッジ日時 2024-12-14 17:50:01
合計ジャッジ時間 25,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 493 ms
24,320 KB
testcase_13 AC 422 ms
22,284 KB
testcase_14 AC 871 ms
38,216 KB
testcase_15 AC 542 ms
26,544 KB
testcase_16 AC 725 ms
33,204 KB
testcase_17 AC 508 ms
25,012 KB
testcase_18 AC 763 ms
33,804 KB
testcase_19 AC 382 ms
21,248 KB
testcase_20 AC 757 ms
33,620 KB
testcase_21 AC 545 ms
26,308 KB
testcase_22 AC 577 ms
32,972 KB
testcase_23 AC 572 ms
32,432 KB
testcase_24 AC 486 ms
27,780 KB
testcase_25 AC 512 ms
36,636 KB
testcase_26 AC 692 ms
46,616 KB
testcase_27 AC 843 ms
38,236 KB
testcase_28 AC 925 ms
38,420 KB
testcase_29 AC 903 ms
38,340 KB
testcase_30 AC 944 ms
38,376 KB
testcase_31 AC 876 ms
38,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=14449999999999;
ll mod=998244353;
int main(){
    ll n;
    cin >> n;
    vector<vector<ll>>g(n);
    vector<ll>x(n),y(n);
    set<pair<ll,ll>>s;
    for (ll i = 0; i < n; i++)
    {
        ll a,b;
        cin >> a >> b;
        a--,b--;
        g[a].push_back(b);
        g[b].push_back(a);
        x[i]=a;
        y[i]=b;
    }
    vector<ll>memo(n);
    for (ll i = 0; i < n; i++)
    {
        memo[i]=g[i].size();
        s.insert({memo[i],i});
    }
    vector<ll>m(n,0);
    map<pair<ll,ll>,ll>mp;
    while (!s.empty())
    {
        auto v=s.lower_bound({-inf,1});
        pair<ll,ll>p=*(v);
        m[p.second]=1;
        s.erase(p);
        m[p.second]=1;
        for (ll i = 0; i < g[p.second].size(); i++)
        {
            if (m[g[p.second][i]]==0&&memo[g[p.second][i]]>1)
            {
                mp[{p.second,g[p.second][i]}]=1;
                s.erase({memo[g[p.second][i]],g[p.second][i]});
                memo[g[p.second][i]]-=1;
                s.insert({memo[g[p.second][i]],g[p.second][i]});

                break;
            }
        }
    }
    for (ll i = 0; i < n; i++)
    {
        if (mp[{x[i],y[i]}]==1)
        {
            cout << "->" << endl;
        }else{
            cout << "<-" << endl;
        }
    }
}
0