結果

問題 No.1507 Road Blocked
ユーザー kotatsugamekotatsugame
提出日時 2021-05-14 22:13:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 710 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-10-02 01:32:58
合計ジャッジ時間 4,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 74 ms
15,744 KB
testcase_04 AC 96 ms
9,600 KB
testcase_05 AC 90 ms
9,540 KB
testcase_06 AC 91 ms
9,600 KB
testcase_07 AC 87 ms
9,552 KB
testcase_08 AC 89 ms
9,612 KB
testcase_09 AC 92 ms
9,600 KB
testcase_10 AC 86 ms
9,608 KB
testcase_11 AC 89 ms
9,684 KB
testcase_12 AC 89 ms
9,728 KB
testcase_13 AC 89 ms
9,680 KB
testcase_14 AC 86 ms
9,616 KB
testcase_15 AC 89 ms
9,600 KB
testcase_16 AC 89 ms
9,600 KB
testcase_17 AC 88 ms
9,656 KB
testcase_18 AC 89 ms
9,744 KB
testcase_19 AC 85 ms
9,636 KB
testcase_20 AC 87 ms
9,604 KB
testcase_21 AC 93 ms
9,600 KB
testcase_22 AC 91 ms
9,632 KB
testcase_23 AC 93 ms
9,600 KB
testcase_24 AC 89 ms
9,616 KB
testcase_25 AC 92 ms
9,728 KB
testcase_26 AC 86 ms
9,600 KB
testcase_27 AC 96 ms
9,548 KB
testcase_28 AC 91 ms
9,672 KB
testcase_29 AC 95 ms
9,600 KB
testcase_30 AC 91 ms
9,600 KB
testcase_31 AC 89 ms
9,608 KB
testcase_32 AC 89 ms
9,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:20:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   20 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
vector<int>G[1<<17];
mint ans;
int dfs(int u,int p)
{
	int ch=1;
	for(int v:G[u])if(v!=p)
	{
		int c=dfs(v,u);
		ch+=c;
		ans-=(long)c*(N-c)*2;
	}
	return ch;
}
main()
{
	cin>>N;
	ans=(mint)N*(N-1)*(N-1);
	for(int i=1;i<N;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	dfs(0,-1);
	cout<<(ans/N/(N-1)/(N-1)).val()<<endl;
}
0