結果

問題 No.1103 Directed Length Sum
ユーザー mamimume____momamimume____mo
提出日時 2020-07-03 22:53:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 956 ms / 3,000 ms
コード長 1,039 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 95,228 KB
実行使用メモリ 99,184 KB
最終ジャッジ日時 2024-09-17 04:34:00
合計ジャッジ時間 9,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 666 ms
99,184 KB
testcase_03 AC 441 ms
42,664 KB
testcase_04 AC 499 ms
32,136 KB
testcase_05 AC 956 ms
53,272 KB
testcase_06 AC 322 ms
21,976 KB
testcase_07 AC 60 ms
7,680 KB
testcase_08 AC 96 ms
10,112 KB
testcase_09 AC 36 ms
6,940 KB
testcase_10 AC 143 ms
12,708 KB
testcase_11 AC 567 ms
34,724 KB
testcase_12 AC 305 ms
22,168 KB
testcase_13 AC 137 ms
12,964 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 221 ms
18,008 KB
testcase_16 AC 630 ms
38,620 KB
testcase_17 AC 666 ms
40,244 KB
testcase_18 AC 127 ms
12,576 KB
testcase_19 AC 558 ms
35,480 KB
testcase_20 AC 45 ms
6,944 KB
testcase_21 AC 82 ms
9,472 KB
testcase_22 AC 444 ms
29,536 KB
testcase_23 AC 250 ms
18,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:52:22: warning: 's' may be used uninitialized [-Wmaybe-uninitialized]
   52 |         for(int v:e[s]){
      |                      ^
main.cpp:47:13: note: 's' was declared here
   47 |         int s;
      |             ^

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <deque>
#include <string>
#include <stack>
#include <vector>
#include <set>
#include <tuple>
#include <utility>
#include <functional>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef tuple<int,int,int> T;
const int INF = 1000000000;
const int MOD = 1000000007;
vector<vector<int>> e;
vector<ll> len;

void solve(int par,ll path_len,int now){
	//path_len=根からの距離.
	len[now] = path_len;
	for(int next:e[now]){
		solve(now,path_len+1,next);
	}
}

int main(){
	int n;
	cin >> n;
	e.resize(n);
	len.resize(n,0);
	vector<int> in_deg(n,0);
	for(int i = 0;i < n-1;i++){
		int a,b;
		cin >> a >> b;
		a--,b--;
		e[a].push_back(b);
		in_deg[b]++;
	}

	int s;
	for(int i = 0;i < n;i++){
		if(in_deg[i] == 0)s = i;
	}

	for(int v:e[s]){
		solve(s,1LL,v);
	}

	ll ans = 0;
	for(int i = 0;i < n;i++){
		ans += (len[i] + 1) * len[i] / 2;
		ans %= MOD;
	}

	cout << ans << endl;
}
0