結果

問題 No.1103 Directed Length Sum
ユーザー tokusakuraitokusakurai
提出日時 2020-07-03 21:47:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,377 bytes
コンパイル時間 1,417 ms
コンパイル使用メモリ 170,308 KB
実行使用メモリ 198,748 KB
最終ジャッジ日時 2024-09-17 00:02:59
合計ジャッジ時間 12,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
50,304 KB
testcase_01 AC 17 ms
50,432 KB
testcase_02 WA -
testcase_03 AC 524 ms
93,028 KB
testcase_04 AC 661 ms
82,124 KB
testcase_05 AC 1,211 ms
104,320 KB
testcase_06 AC 391 ms
71,564 KB
testcase_07 AC 82 ms
56,092 KB
testcase_08 AC 126 ms
58,872 KB
testcase_09 AC 58 ms
54,564 KB
testcase_10 AC 176 ms
61,936 KB
testcase_11 AC 705 ms
86,344 KB
testcase_12 AC 411 ms
71,304 KB
testcase_13 AC 195 ms
61,892 KB
testcase_14 AC 48 ms
53,708 KB
testcase_15 AC 306 ms
66,308 KB
testcase_16 AC 818 ms
89,492 KB
testcase_17 AC 848 ms
90,648 KB
testcase_18 AC 181 ms
60,888 KB
testcase_19 AC 731 ms
85,848 KB
testcase_20 AC 70 ms
54,324 KB
testcase_21 AC 119 ms
57,232 KB
testcase_22 AC 580 ms
80,336 KB
testcase_23 AC 321 ms
68,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < n; i++)
#define rep2(i, x, n) for(int i = x; i <= n; i++)
#define rep3(i, x, n) for(int i = x; i >= n; i--)
#define elif else if
#define sp(x) fixed << setprecision(x)
#define pb push_back
#define eb emplace_back
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
using ll = long long;
using ld = long double;
using pii = pair<int, int>;
using pil = pair<int, ll>;
using pli = pair<ll, int>;
using pll = pair<ll, ll>;
const ll MOD = 1e9+7;
//const ll MOD = 998244353;
const int inf = (1<<30)-1;
const ll INF = (1LL<<60)-1;
const ld EPS = 1e-10;
template<typename T> bool chmax(T &x, const T &y) {return (x < y)? (x = y, true) : false;};
template<typename T> bool chmin(T &x, const T &y) {return (x > y)? (x = y, true) : false;};

const int MAX_V = 1e6;
vector<int> es[MAX_V], rs[MAX_V];
ll subtree_size[MAX_V];
ll ans = 0;

ll dfs(int now){
    ll ret = 0, s = 1;
    for(auto &e: es[now]){
        ret += dfs(e)+subtree_size[e];
        s += subtree_size[e];
    }
    subtree_size[now] = s;
    ans += ret;
    return ret;
}

int main(){
    int N;
    cin >> N;
    rep(i, N-1){
        int A, B;
        cin >> A >> B;
        A--, B--;
        es[A].pb(B), rs[B].pb(A);
    }
    int root = -1;
    rep(i, N) if(rs[i].empty()) root = i;
    dfs(root);
    cout << ans << endl;
}
0