結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | gazelle |
提出日時 | 2018-12-11 00:09:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,350 bytes |
コンパイル時間 | 1,461 ms |
コンパイル使用メモリ | 137,124 KB |
実行使用メモリ | 22,356 KB |
最終ジャッジ日時 | 2024-09-16 15:58:44 |
合計ジャッジ時間 | 8,155 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<set> #include<map> #include<unordered_map> #include<queue> #include<iomanip> #include<math.h> #include<bitset> #include<cassert> #include<random> #include<time.h> #include<functional> using namespace std; using ll=long long; using ld=long double; using P=pair<ll,ll>; #define MOD 1000000007LL #define INF 1000000000LL #define EPS 1e-10 #define FOR(i,n,m) for(ll i=n;i<(ll)m;i++) #define REP(i,n) FOR(i,0,n) #define DUMP(a) REP(d,a.size()){cout<<a[d];if(d!=a.size()-1)cout<<" ";else cout<<endl;} #define ALL(v) v.begin(),v.end() #define UNIQUE(v) sort(ALL(v));v.erase(unique(ALL(v)),v.end()); #define pb push_back /* --------------------------------------- */ ll n; vector<vector<ll>> g; vector<ll> cnt; int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> n; g.resize(n); cnt.resize(n, 0); REP(i, n - 1) { ll u, v; cin >> u >> v; u--; v--; g[u].pb(v); cnt[u]++; g[v].pb(u); cnt[v]++; } priority_queue<P> q; ll ans = 1; REP(i,n) q.push(P(cnt[i],i)); while(!q.empty()) { ll cost = q.top().first; ll p = q.top().second; q.pop(); if(cnt[p] != cost) continue; ans += cost - 1; REP(i,g[p].size()) { cnt[g[p][i]]--; q.push(P(cnt[g[p][i]], g[p][i])); } } cout << ans << endl; return 0; } /* --------------------------------------- */