結果

問題 No.2638 Initial fare
ユーザー daiotadaiota
提出日時 2024-02-20 06:43:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 1,602 ms
コンパイル使用メモリ 169,304 KB
実行使用メモリ 16,232 KB
最終ジャッジ日時 2024-09-29 03:23:37
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,064 KB
testcase_01 AC 5 ms
8,200 KB
testcase_02 AC 4 ms
8,080 KB
testcase_03 AC 4 ms
8,152 KB
testcase_04 AC 92 ms
15,088 KB
testcase_05 AC 95 ms
15,468 KB
testcase_06 AC 3 ms
8,128 KB
testcase_07 AC 85 ms
15,012 KB
testcase_08 AC 64 ms
15,028 KB
testcase_09 AC 70 ms
15,684 KB
testcase_10 AC 72 ms
15,796 KB
testcase_11 AC 5 ms
8,176 KB
testcase_12 AC 86 ms
15,092 KB
testcase_13 AC 62 ms
14,540 KB
testcase_14 AC 78 ms
15,608 KB
testcase_15 AC 73 ms
15,688 KB
testcase_16 AC 4 ms
8,052 KB
testcase_17 AC 89 ms
15,956 KB
testcase_18 AC 74 ms
15,324 KB
testcase_19 AC 99 ms
16,232 KB
testcase_20 AC 90 ms
15,884 KB
testcase_21 AC 83 ms
15,656 KB
testcase_22 AC 4 ms
8,176 KB
testcase_23 AC 85 ms
14,084 KB
testcase_24 AC 86 ms
14,464 KB
testcase_25 AC 5 ms
8,200 KB
testcase_26 AC 96 ms
15,348 KB
testcase_27 AC 97 ms
14,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


vector<ll> G[200010];


int main(){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
   ll i,j;

	ll N;
	cin >> N;

	for(i=1;i<N;i++){
		ll a,b;
		cin >> a >> b;
		G[a].push_back(b);
		G[b].push_back(a);
	}


	ll ans=N-1;
	for(i=1;i<=N;i++){
		ll n=G[i].size();
		if(n==0) continue;

		ans+=n*(n-1)/2;

		for(j=0;j<n;j++){
			if(i>G[i][j]) continue;
			ll k=G[i][j];
			ll m=G[k].size();
			ans+=(n-1)*(m-1);
		}
	}


	cout << ans << endl;


	return 0;

}
0