結果

問題 No.1103 Directed Length Sum
ユーザー simansiman
提出日時 2021-10-12 03:01:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 927 ms / 3,000 ms
コード長 1,217 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 143,352 KB
実行使用メモリ 61,876 KB
最終ジャッジ日時 2024-09-16 10:27:26
合計ジャッジ時間 10,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
30,828 KB
testcase_01 AC 10 ms
30,640 KB
testcase_02 AC 693 ms
61,876 KB
testcase_03 AC 493 ms
50,848 KB
testcase_04 AC 521 ms
40,960 KB
testcase_05 AC 927 ms
48,264 KB
testcase_06 AC 323 ms
37,376 KB
testcase_07 AC 72 ms
32,256 KB
testcase_08 AC 114 ms
33,132 KB
testcase_09 AC 51 ms
31,812 KB
testcase_10 AC 156 ms
34,048 KB
testcase_11 AC 564 ms
41,688 KB
testcase_12 AC 329 ms
37,368 KB
testcase_13 AC 160 ms
34,200 KB
testcase_14 AC 40 ms
31,544 KB
testcase_15 AC 257 ms
35,896 KB
testcase_16 AC 640 ms
43,140 KB
testcase_17 AC 683 ms
43,592 KB
testcase_18 AC 158 ms
34,048 KB
testcase_19 AC 593 ms
42,244 KB
testcase_20 AC 59 ms
31,940 KB
testcase_21 AC 102 ms
32,896 KB
testcase_22 AC 464 ms
40,144 KB
testcase_23 AC 273 ms
36,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;
typedef pair<int, ll> Node;

const ll MOD = 1000000007;
const int MAX_N = 1000010;
vector<int> E[MAX_N];
int P[MAX_N];
int N;

int find_root(int v) {
  if (P[v] == -1) return v;
  return find_root(P[v]);
}

ll dfs(int v, int depth) {
  ll len = 0;

  for (int u : E[v]) {
    len += depth * (depth + 1) / 2;
    len %= MOD;
    len += dfs(u, depth + 1);
    len %= MOD;
  }

  return len;
}

int main() {
  memset(P, -1, sizeof(P));
  cin >> N;

  for (int i = 0; i < N - 1; ++i) {
    int a, b;
    cin >> a >> b;

    E[a].push_back(b);
    P[b] = a;
  }

  int root = find_root(1);
  ll ans = 0;
  // cout << dfs(root, 1) << endl;
  queue<Node> que;
  que.push(Node(root, 1));

  while (not que.empty()) {
    Node node = que.front();
    int v = node.first;
    ll depth = node.second;
    que.pop();

    for (int u : E[v]) {
      ans += depth * (depth + 1) / 2;
      ans %= MOD;
      que.push(Node(u, depth + 1));
    }
  }

  cout << ans << endl;

  return 0;
}
0