結果

問題 No.2638 Initial fare
ユーザー shobonvipshobonvip
提出日時 2024-02-11 16:58:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 209,996 KB
実行使用メモリ 57,544 KB
最終ジャッジ日時 2024-09-28 17:36:38
合計ジャッジ時間 14,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 248 ms
27,888 KB
testcase_05 AC 253 ms
29,196 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 221 ms
28,840 KB
testcase_08 AC 181 ms
27,632 KB
testcase_09 AC 199 ms
29,468 KB
testcase_10 AC 201 ms
29,772 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 236 ms
28,700 KB
testcase_13 AC 169 ms
26,336 KB
testcase_14 AC 202 ms
29,452 KB
testcase_15 AC 193 ms
29,848 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 272 ms
28,956 KB
testcase_18 AC 187 ms
28,216 KB
testcase_19 AC 1,522 ms
32,212 KB
testcase_20 AC 781 ms
30,296 KB
testcase_21 AC 1,925 ms
33,792 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 266 ms
57,544 KB
testcase_24 AC 269 ms
53,208 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 TLE -
testcase_27 AC 471 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	int n; cin >> n;
	vector ikeru(n, vector<int>(0));
	for (int i=0; i<n-1; i++){
		int u, v; cin >> u >> v;
		u--; v--;
		ikeru[u].push_back(v);
		ikeru[v].push_back(u);
	}

	long long ans = 0;
	vector dp(n, vector<long long>(4));
	vector<int> mx(n, 0);

	auto dfs = [&](auto self, int i, int p) -> void {
		dp[i][0] = 1;
		mx[i] = 1;
		for (int j: ikeru[i]){
			if (j == p) continue;
			self(self, j, i);
			for (int x=0; x<mx[i]; x++){
				for (int y=0; y<mx[j]; y++){
					if (x+y+1 > 3) break;
					ans += dp[i][x] * dp[j][y];
				}
			}
			for (int x=0; x<min(3,mx[j]); x++){
				dp[i][x+1] += dp[j][x];
			}
			mx[i] = max(mx[i], mx[j]+1);
		}
	};

	dfs(dfs, 0, -1);
	cout << ans << '\n';
}
0