P5239 回忆京都

文章目录

        • R e s u l t Result Result
        • H y p e r l i n k Hyperlink Hyperlink
        • D e s c r i p t i o n Description Description
        • S o l u t i o n Solution Solution
        • C o d e Code Code

R e s u l t Result Result

P5239 回忆京都_第1张图片


H y p e r l i n k Hyperlink Hyperlink

https://www.luogu.com.cn/problem/P5239


D e s c r i p t i o n Description Description

求组合数的二维前缀和

数据范围: n , m ≤ 1 0 3 n,m\leq 10^3 n,m103


S o l u t i o n Solution Solution

随便递推一下然后二维前缀和求和就行了

时间复杂度: O ( n 2 + q ) O(n^2+q) O(n2+q)


C o d e Code Code


#include
#include
#include
#include
#define LL long long
#define mod 19260817
using namespace std;int q,n,m;
LL C[1001][1001],S[1001][1001];
inline LL read()
{
     
	char c;LL d=1,f=0;
	while(c=getchar(),!isdigit(c)) if(c=='-') d=-1;f=(f<<3)+(f<<1)+c-48;
	while(c=getchar(),isdigit(c)) f=(f<<3)+(f<<1)+c-48;
	return d*f;
}
signed main()
{
     
	C[0][0]=1;C[1][0]=1;C[1][1]=1;
	for(register int i=2;i<=1000;i++) {
     C[i][0]=1;for(register int j=1;j<=i;j++) C[i][j]=(C[i-1][j]+C[i-1][j-1])%mod;}
	for(register int i=1;i<=1000;i++) for(register int j=1;j<=1000;j++) S[i][j]=(S[i-1][j]+S[i][j-1]-S[i-1][j-1]+C[i][j]+mod)%mod;
	q=read();
	while(q--)
	{
     
		m=read();n=read();
		printf("%lld\n",S[n][m]);
	}
}

你可能感兴趣的:(P5239,回忆京都)