結果

問題 No.763 Noelちゃんと木遊び
ユーザー hiro71687khiro71687k
提出日時 2024-12-31 01:39:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 216,020 KB
実行使用メモリ 12,156 KB
最終ジャッジ日時 2024-12-31 01:39:08
合計ジャッジ時間 5,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
11,776 KB
testcase_01 AC 32 ms
6,820 KB
testcase_02 AC 80 ms
10,496 KB
testcase_03 AC 55 ms
8,192 KB
testcase_04 AC 36 ms
6,816 KB
testcase_05 AC 50 ms
7,936 KB
testcase_06 AC 100 ms
11,904 KB
testcase_07 AC 92 ms
11,648 KB
testcase_08 AC 55 ms
8,320 KB
testcase_09 AC 36 ms
6,816 KB
testcase_10 AC 14 ms
6,816 KB
testcase_11 AC 97 ms
12,156 KB
testcase_12 AC 87 ms
11,136 KB
testcase_13 AC 88 ms
11,008 KB
testcase_14 AC 76 ms
10,112 KB
testcase_15 AC 50 ms
8,064 KB
testcase_16 AC 10 ms
6,820 KB
testcase_17 AC 51 ms
8,192 KB
testcase_18 AC 96 ms
12,032 KB
testcase_19 AC 95 ms
11,264 KB
testcase_20 AC 87 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll= long long;
int main(){
    ll n;
    cin >> n;
    vector<vector<ll>>g(n);
    for (ll i = 0; i < n-1; i++)
    {
        ll u,v;
        cin >> u >> v;
        u--,v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    vector<ll>memo(n,99999999);
    memo[0]=0;
    queue<ll>que;
    que.push(0);
    while (!que.empty())
    {
        ll v=que.front();
        que.pop();
        for (ll i = 0; i < g[v].size(); i++)
        {
            if (memo[g[v][i]]>memo[v]+1)
            {
                memo[g[v][i]]=memo[v]+1;
                que.push(g[v][i]);
            }
        }
    }
    vector<ll>st(n,0);
    vector<pair<ll,ll>>p(n);
    for (ll i = 0; i < n; i++)
    {
        p[i]={memo[i],i};
    }
    sort(p.begin(),p.end());
    reverse(p.begin(),p.end());
    ll ans=0;
    for (ll i = 0; i < n; i++)
    {
        ll x=p[i].second;
        bool ok=true;
        for (ll j = 0; j < g[x].size(); j++)
        {
            if (st[g[x][j]])
            {
                ok=false;
                break;
            }
        }
        if (ok)
        {
            st[x]=1;
            ans++;
        }
    }
    cout << ans << endl;
}
0