首页 > 其他分享 >[gym102538H] Horrible Cycles

[gym102538H] Horrible Cycles

时间:2023-12-11 21:02:21浏览次数:19  
标签:int 右部点 ans gym102538H Horrible Cycles dp

题目链接

考虑把所有点按一定顺序排,使得左部点前面所有右部点恰好是他连向的所有右部点。

定义 \(dp_{i,j}\) 表示前 \(i\) 个点,那么此时一个环会被分出 \(j\) 条链的方案。强制钦定一条链的两边都是右部点。

如果 \(i\) 是一个右部点,他可以选择是否选到环中, \(dp_{i,j}=dp_{i-1,j-1}+dp_{i-1,j}\)

如果 \(i\) 是一个左部点,那么他可以作为一个环最后一个进入的人,把 \(dp_{i-1,1}\) 计入答案。

同时他可以合并两条链,也就是 \(dp_{i,j}=dp_{i-1,j}+dp_{i-1,j+1}\times (j+1)\times j\)(注意有两种边集选择方案)

最后要减去二元环,在除以 2(计数时顺时针逆时针错了)

#include<bits/stdc++.h>
using namespace std;
const int N=5005,P=998244353;
int n,a[N],dp[N],ans;
int main()
{
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
		scanf("%d",a+i),(ans+=P-a[i])%=P;
	sort(a+1,a+n+1);
	dp[0]=1;
	for(int i=1;i<=n;i++)
	{
		for(int j=a[i-1]+1;j<=a[i];j++)
			for(int j=n;j;j--)
				(dp[j]+=dp[j-1])%=P;
		(ans+=dp[1])%=P;
		for(int j=0;j<=n;j++)
			(dp[j]+=dp[j+1]*(j+1LL)%P*j%P)%=P;
	}
	printf("%d",ans&1? ans+P>>1:ans>>1);
}

标签:int,右部点,ans,gym102538H,Horrible,Cycles,dp
From: https://www.cnblogs.com/mekoszc/p/17895526.html

相关文章

  • 题解 [POI2012] OKR-A Horrible Poem
    题目链接询问循环节的“模板题”?首先,有一个经典结论:若存在一长度为\(len\)的循环节,则\(s[l\simr-len]=s[l+len\simr]\),简单来说就是利用移位,说明是否是循环节。有了这个结论,再使用字符串哈希,我们就可以做到\(O(1)\)判断。因为:字符串长度=循环节长度\(\times\)循环......
  • Re: finding all cycles in a graph
    ref:https://cs.stackexchange.com/questions/7216/find-the-simple-cycles-in-a-directed-graphRe:findingallcyclesinagraphFrom: JuanPabloCarbajalSubject: Re:findingallcyclesinagraphDate: Wed,25Jan201219:43:48+0100OnWed,Jan25,2012a......
  • 2023-04-01-循环队列CycleSqQueue的基本操作
    //循环链表//牺牲一个单元来区分队空还是队满#include<stdio.h>#include<stdbool.h>#defineMAXSIZE6typedefstruct{intdata[MAXSIZE];intfront,rear;}CySqQueue;voidinitCySqQueue(CySqQueue*C)//初始化循环链表{C->front=0;C->rear=0;......
  • java: Annotation processing is not supported for module cycles
    java:Annotationprocessingisnotsupportedformodulecycles.Pleaseensurethatallmodulesfromcycle[WV-service,WV-database,WV-core]areexcludedfroma......
  • KVM虚拟机使用Perf stat 提示cycles not supported
    问题现象使用perfstat只显示task-clock,context-switches,cpu-migrations,page-faults剩余cycles,instructions,branches,branch-misses均为notsupported原因分......
  • CF962F Simple Cycles Edges
    CF962FSimpleCyclesEdges-洛谷|计算机科学教育新生态(luogu.com.cn)在一个无向图中,某个简单环等价于这个图中某个点数等于边数的点双连通分量。为什么不是边双......