結果

問題 No.1103 Directed Length Sum
ユーザー tokusakuraitokusakurai
提出日時 2020-07-03 21:52:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,286 ms / 3,000 ms
コード長 1,389 bytes
コンパイル時間 1,708 ms
コンパイル使用メモリ 169,348 KB
実行使用メモリ 198,668 KB
最終ジャッジ日時 2024-09-22 10:07:39
合計ジャッジ時間 16,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
50,372 KB
testcase_01 AC 20 ms
50,500 KB
testcase_02 AC 875 ms
198,668 KB
testcase_03 AC 570 ms
93,116 KB
testcase_04 AC 783 ms
82,740 KB
testcase_05 AC 1,286 ms
104,328 KB
testcase_06 AC 447 ms
71,552 KB
testcase_07 AC 98 ms
55,936 KB
testcase_08 AC 154 ms
57,964 KB
testcase_09 AC 65 ms
56,684 KB
testcase_10 AC 213 ms
62,752 KB
testcase_11 AC 796 ms
87,280 KB
testcase_12 AC 466 ms
71,692 KB
testcase_13 AC 218 ms
62,996 KB
testcase_14 AC 53 ms
52,724 KB
testcase_15 AC 339 ms
67,728 KB
testcase_16 AC 905 ms
90,908 KB
testcase_17 AC 944 ms
92,240 KB
testcase_18 AC 210 ms
62,308 KB
testcase_19 AC 823 ms
87,964 KB
testcase_20 AC 77 ms
54,688 KB
testcase_21 AC 140 ms
57,644 KB
testcase_22 AC 655 ms
80,436 KB
testcase_23 AC 375 ms
68,728 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, ans %= MOD;
    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