結果

問題 No.1103 Directed Length Sum
ユーザー simansiman
提出日時 2021-10-12 02:48:51
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 141,308 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-09-16 10:13:35
合計ジャッジ時間 13,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
30,720 KB
testcase_01 AC 24 ms
30,848 KB
testcase_02 WA -
testcase_03 AC 489 ms
34,848 KB
testcase_04 AC 581 ms
39,792 KB
testcase_05 AC 1,007 ms
46,480 KB
testcase_06 AC 358 ms
36,704 KB
testcase_07 AC 82 ms
32,128 KB
testcase_08 AC 128 ms
32,896 KB
testcase_09 AC 54 ms
31,616 KB
testcase_10 AC 170 ms
33,792 KB
testcase_11 AC 631 ms
40,592 KB
testcase_12 AC 356 ms
36,736 KB
testcase_13 AC 175 ms
33,712 KB
testcase_14 AC 44 ms
31,308 KB
testcase_15 AC 277 ms
35,456 KB
testcase_16 AC 725 ms
41,856 KB
testcase_17 AC 723 ms
42,368 KB
testcase_18 AC 177 ms
33,624 KB
testcase_19 AC 629 ms
40,832 KB
testcase_20 AC 63 ms
31,744 KB
testcase_21 AC 115 ms
32,768 KB
testcase_22 AC 501 ms
38,976 KB
testcase_23 AC 293 ms
35,696 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;

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 += dfs(u, depth + 1);
  }

  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);
  cout << dfs(root, 1) << endl;

  return 0;
}
0