結果

問題 No.1483 Many Graph in Namori
ユーザー vjudge1vjudge1
提出日時 2025-01-03 17:28:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 2,886 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 200,472 KB
実行使用メモリ 17,836 KB
最終ジャッジ日時 2025-01-03 17:28:27
合計ジャッジ時間 8,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,720 KB
testcase_01 AC 3 ms
7,704 KB
testcase_02 AC 3 ms
8,696 KB
testcase_03 AC 3 ms
8,236 KB
testcase_04 AC 3 ms
7,604 KB
testcase_05 AC 3 ms
8,328 KB
testcase_06 AC 4 ms
7,452 KB
testcase_07 AC 3 ms
7,512 KB
testcase_08 AC 4 ms
7,940 KB
testcase_09 AC 3 ms
8,052 KB
testcase_10 AC 58 ms
10,860 KB
testcase_11 AC 30 ms
10,276 KB
testcase_12 AC 45 ms
10,132 KB
testcase_13 AC 37 ms
9,628 KB
testcase_14 AC 41 ms
10,188 KB
testcase_15 AC 73 ms
11,936 KB
testcase_16 AC 32 ms
9,284 KB
testcase_17 AC 15 ms
8,272 KB
testcase_18 AC 53 ms
10,492 KB
testcase_19 AC 45 ms
10,404 KB
testcase_20 AC 32 ms
9,544 KB
testcase_21 AC 15 ms
9,376 KB
testcase_22 AC 48 ms
10,760 KB
testcase_23 AC 55 ms
10,200 KB
testcase_24 AC 29 ms
9,432 KB
testcase_25 AC 31 ms
9,472 KB
testcase_26 AC 77 ms
11,416 KB
testcase_27 AC 90 ms
12,404 KB
testcase_28 AC 17 ms
9,064 KB
testcase_29 AC 36 ms
9,804 KB
testcase_30 AC 84 ms
11,744 KB
testcase_31 AC 94 ms
11,924 KB
testcase_32 AC 84 ms
12,472 KB
testcase_33 AC 89 ms
12,532 KB
testcase_34 AC 85 ms
11,880 KB
testcase_35 AC 44 ms
11,452 KB
testcase_36 AC 51 ms
12,332 KB
testcase_37 AC 90 ms
15,668 KB
testcase_38 AC 20 ms
9,664 KB
testcase_39 AC 128 ms
17,836 KB
testcase_40 AC 27 ms
9,608 KB
testcase_41 AC 62 ms
12,344 KB
testcase_42 AC 49 ms
11,316 KB
testcase_43 AC 59 ms
11,240 KB
testcase_44 AC 68 ms
12,652 KB
testcase_45 AC 7 ms
8,244 KB
testcase_46 AC 33 ms
9,940 KB
testcase_47 AC 100 ms
14,520 KB
testcase_48 AC 106 ms
14,980 KB
testcase_49 AC 115 ms
15,108 KB
testcase_50 AC 73 ms
13,136 KB
testcase_51 AC 72 ms
13,192 KB
testcase_52 AC 73 ms
13,076 KB
testcase_53 AC 73 ms
13,044 KB
testcase_54 AC 72 ms
13,156 KB
testcase_55 AC 74 ms
13,148 KB
testcase_56 AC 84 ms
16,940 KB
testcase_57 AC 69 ms
15,232 KB
testcase_58 AC 59 ms
16,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:91:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   91 |         scanf("%d%d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:94:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   94 |                 scanf("%d%d",&x,&y);
      |                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+5,P=998244353;
int n,m,a,b,st[N],tp,rg[N],cr,ans;
int f[N][3][2],F[3][2],g[3][2],G[3][2],va[N][2];
bool vis[N],ir[N];
vector<int>e[N];
int ksm(int x,int y){
	int res=1;
	for(;y;y>>=1,x=1ll*x*x%P)if(y&1)res=1ll*res*x%P;
	return res;
}
inline void Add(int &x,int y){
	if((x+=y)>=P)x-=P;
}
bool findr(int x,int y){
	vis[x]=true,st[++tp]=x;
	for(auto v:e[x])if(v!=y){
		if(!vis[v]){
			if(findr(v,x))return true;
		}else{
			do{
				rg[cr++]=st[tp--];
			}while(st[tp+1]!=v);
			return true;
		}
	}
	--tp;
	return false;
}
void dfs(int x,int y){
	f[x][0][0]=f[x][0][1]=1;
	for(auto v:e[x])if(v!=y&&!ir[v]){
		dfs(v,x);
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)
			for(int k=0;k<3;++k)for(int l=0;l+j<2;++l)
				Add(F[min(2,i+1)][j+l],1ll*f[x][i][j]*f[v][k][l]%P*(k<1?a:b)%P);
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)Add(f[x][i][j],F[i][j]),F[i][j]=0;
	}
	if(!ir[x])for(int i=0;i<3;++i)Add(ans,1ll*(i<2?a:b)*f[x][i][1]%P);
}
void calc1(){
	int g0=1,g1=0;
	for(int i=0;i<cr;++i){
		int x=rg[i],f0=0,f1=0;
		for(int j=0;j<3;++j)Add(f0,f[x][j][0]),Add(f1,f[x][j][1]);
		g1=(1ll*g1*f0+1ll*f1*g0)%P;
		g0=1ll*g0*f0%P;
	}
	Add(ans,1ll*g1*ksm(b,cr)%P);
}
void calc2(){
	for(int o=0;o<cr;++o){
		int x=rg[o];
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)G[i][j]=f[x][i][j];
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)
			for(int k=0;k<3;++k)for(int l=0;l+j<2;++l)
				Add(G[min(2,i+1)][j+l],1ll*f[x][i][j]*g[k][l]%P*(k<1?a:b)%P);
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)g[i][j]=G[i][j],G[i][j]=0;
		for(int i=0;i<3;++i)Add(ans,1ll*(i<2?a:b)*g[i][1]%P);
	}
}
void calc3(){
	int ia=ksm(a,P-2);
	ia=1ll*ia*ia%P;
	memset(G,0,sizeof(G));
	memset(g,0,sizeof(g));
	g[0][0]=1;
	for(int o=0;o<cr-1;++o){
		int x=rg[o];
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)
			for(int k=0;k<3;++k)for(int l=0;l+j<2;++l)
				Add(G[min(2,i+1)][j+l],1ll*f[x][i][j]*g[k][l]%P*(k<1?a:b)%P);
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)g[i][j]=G[i][j],G[i][j]=0;
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)Add(va[o][j],1ll*(i<2?a:b)*g[i][j]%P);
		if(o)Add(va[o][0],va[o-1][0]),Add(va[o][1],va[o-1][1]);
	}
	memset(G,0,sizeof(G));
	memset(g,0,sizeof(g));
	g[0][0]=1;
	for(int o=cr-1;o;--o){
		int x=rg[o];
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)
			for(int k=0;k<3;++k)for(int l=0;l+j<2;++l)
				Add(G[min(2,i+1)][j+l],1ll*f[x][i][j]*g[k][l]%P*(k<1?a:b)%P);
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)g[i][j]=G[i][j],G[i][j]=0;
		for(int i=0;i<3;++i)for(int j=0;j<2;++j)Add(ans,1ll*(i<2?a:b)*g[i][j]%P*va[o-1][j^1]%P*ia%P);
	}
}
int main(){
	scanf("%d%d",&n,&m);
	b=ksm(1+P-m,P-2),a=1ll*m*b%P;
	for(int i=1,x,y;i<=n;++i){
		scanf("%d%d",&x,&y);
		e[x].push_back(y),e[y].push_back(x);
	}
	findr(1,0);
	for(int i=0;i<cr;++i)ir[rg[i]]=true;
	for(int i=0;i<cr;++i)dfs(rg[i],0);
	calc1();
	calc2();
	calc3();
	ans=1ll*ans*ksm(P+1-m,n)%P;
	printf("%d\n",ans);
	return 0;
}
0