結果

問題 No.1878 union-find の数え上げ
ユーザー colognecologne
提出日時 2022-03-17 16:27:14
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 2,755 ms
コンパイル使用メモリ 131,612 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-10-03 09:22:50
合計ジャッジ時間 5,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <functional>
#include <iostream>
#include <optional>
#include <vector>
#include <atcoder/modint>

using namespace std;
using Mint = atcoder::modint1000000007;

int main()
{
	int N;
	cin >> N;
	vector<vector<int>> adj(N);
	for (int i = 1; i < N; i++)
	{
		int v;
		cin >> v;
		--v;
		adj[v].push_back(i);
		cout << v << " " << i << endl;
	}
	function<pair<Mint, Mint>(int, int)> dfs = [&](int a, int h)
	{
		Mint root = 1, rem = 1;
		// case rem, child should all be rem
		// case root, n/c about child
		for (auto b : adj[a])
		{
			auto [bro, bre] = dfs(b, h + 1);
			rem *= bre;
			root *= bre + bro;
		}
		if (h <= 1)
			rem = 0;
		return make_pair(root, rem);
	};
	cout << dfs(0, 0).first.val() << endl;
}
0