結果

問題 No.1103 Directed Length Sum
ユーザー itohdakitohdak
提出日時 2020-07-03 22:22:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 769 ms / 3,000 ms
コード長 957 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 206,828 KB
実行使用メモリ 161,112 KB
最終ジャッジ日時 2024-09-17 03:15:27
合計ジャッジ時間 8,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 352 ms
161,112 KB
testcase_03 AC 223 ms
85,220 KB
testcase_04 AC 389 ms
56,312 KB
testcase_05 AC 769 ms
95,068 KB
testcase_06 AC 250 ms
37,708 KB
testcase_07 AC 37 ms
11,392 KB
testcase_08 AC 64 ms
15,736 KB
testcase_09 AC 21 ms
8,448 KB
testcase_10 AC 93 ms
20,632 KB
testcase_11 AC 452 ms
61,060 KB
testcase_12 AC 246 ms
38,016 KB
testcase_13 AC 100 ms
21,092 KB
testcase_14 AC 18 ms
7,168 KB
testcase_15 AC 173 ms
30,380 KB
testcase_16 AC 526 ms
68,308 KB
testcase_17 AC 543 ms
71,088 KB
testcase_18 AC 88 ms
20,484 KB
testcase_19 AC 448 ms
62,544 KB
testcase_20 AC 26 ms
9,600 KB
testcase_21 AC 50 ms
14,728 KB
testcase_22 AC 364 ms
51,756 KB
testcase_23 AC 178 ms
32,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define REP(i,m,n) for(int i=(int)(m); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define RREP(i,m,n) for(int i=(int)(m); i>=(int)(n); i--)
#define rrep(i,n) RREP(i,n-1,0)
#define all(v) v.begin(), v.end()
const int inf = 1e9+7;
const ll longinf = 1LL<<60;
const ll mod = 1e9+7;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  int n;
  cin >> n;
  vector<vector<int>> G(n);
  vector<vector<int>> from(n);
  rep(i, n-1) {
    int a, b;
    cin >> a >> b; a--; b--;
    G[a].push_back(b);
    from[b].push_back(a);
  }
  int root = 0;
  rep(i, n) if(from[i].size() == 0) root = i;
  ll ans = 0;
  ll tmp = 0;
  auto dfs = [&](auto dfs, int cur, int par, ll depth) -> void {
    ll in = tmp;
    tmp++;
    for(int ne: G[cur]) dfs(dfs, ne, cur, depth+1);
    ll out = tmp;
    (ans += (out-in) * depth) %= mod;
  };
  dfs(dfs, root, -1, 0);
  cout << ans << "\n";
  return 0;
}
0