結果

問題 No.1103 Directed Length Sum
ユーザー fastmathfastmath
提出日時 2020-07-03 22:10:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 658 ms / 3,000 ms
コード長 1,741 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 169,488 KB
実行使用メモリ 152,960 KB
最終ジャッジ日時 2024-09-17 02:29:29
合計ジャッジ時間 8,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
26,752 KB
testcase_01 AC 19 ms
26,880 KB
testcase_02 AC 362 ms
152,960 KB
testcase_03 AC 195 ms
51,060 KB
testcase_04 AC 363 ms
46,848 KB
testcase_05 AC 658 ms
61,312 KB
testcase_06 AC 234 ms
39,808 KB
testcase_07 AC 54 ms
29,952 KB
testcase_08 AC 78 ms
31,616 KB
testcase_09 AC 42 ms
28,800 KB
testcase_10 AC 109 ms
33,408 KB
testcase_11 AC 393 ms
48,640 KB
testcase_12 AC 224 ms
39,808 KB
testcase_13 AC 106 ms
33,612 KB
testcase_14 AC 35 ms
28,288 KB
testcase_15 AC 169 ms
36,992 KB
testcase_16 AC 445 ms
51,328 KB
testcase_17 AC 466 ms
52,352 KB
testcase_18 AC 101 ms
33,280 KB
testcase_19 AC 404 ms
49,024 KB
testcase_20 AC 43 ms
29,184 KB
testcase_21 AC 68 ms
31,104 KB
testcase_22 AC 316 ms
44,928 KB
testcase_23 AC 179 ms
37,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';

const int N = 1e6+7, MOD = 1000 * 1000 * 1000 + 7;

int mod(int n) {
    n %= MOD;
    if (n < 0) return n + MOD;
    else return n;
}   
int fp(int a, int p) {
    int ans = 1, c = a;
    for (int i = 0; (1ll << i) <= p; ++i) {
        if ((p >> i) & 1) ans = mod(ans * c);
        c = mod(c * c);
    }   
    return ans;
}   
int dv(int a, int b) { return mod(a * fp(b, MOD - 2)); }


int cnt[N], dist[N];
bool used[N];
vector <int> g[N];
void dfs(int u) {
    used[u] = 1;
    for (int v : g[u]) {
        if (!used[v]) {
            dfs(v);
        }   
        cnt[u] += cnt[v];
        dist[u] += dist[v];
        cnt[u] = mod(cnt[u]);
        dist[u] = mod(dist[u]);
    }   
    dist[u] += cnt[u];
    ++cnt[u];
        cnt[u] = mod(cnt[u]);
        dist[u] = mod(dist[u]);
}   

signed main() {
    #ifdef HOME
    freopen("input.txt", "r", stdin);
    #else
    #define endl '\n'
    ios_base::sync_with_stdio(0); cin.tie(0);
    #endif

    int n;
    cin >> n;
    for (int i = 0; i < n - 1; ++i) {
        int u, v;
        cin >> u >> v;
        g[u].app(v);
    }   

    int ans = 0;
    for (int i = 1; i <= n; ++i) {
        if (!used[i]) {
            dfs(i);
        }    
    }   
    for (int i = 1; i <= n; ++i)
        ans += dist[i];
    ans = mod(ans);
    cout << ans << endl;
}
0