本文搬运自本人初中博客园博客,若图片加载不出来,可到原文查看:https://www.cnblogs.com/zhangtingxi/p/15558415.html

题目链接

dp(i,j)dp(i, j) 为前 ii 行放 jj 个棋子的方案数, lenilen_i 为第 ii 行的列数。

类似背包的思想,每一行放或不放:

dp(i,j)=dp(i1,j)+dp(i1,j1)×(leni(j1))dp(i, j)=dp(i-1, j)+dp(i-1, j-1)\times(len_i-(j-1))

dp(i1,j)dp(i-1, j) 是不放,dp(i1,j1)dp(i-1, j-1) 是放,有 leni(j1)len_i-(j-1) 种方案。

Code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Problem: P1350 车的放置
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/P1350
// Memory Limit: 125 MB
// Time Limit: 1000 ms
//
// Powered by CP Editor (https://cpeditor.org)

#include<bits/stdc++.h>
using namespace std;
#define int long long
inline int read(){int x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;
ch=getchar();}while(ch>='0'&&ch<='9'){x=(x<<1)+
(x<<3)+(ch^48);ch=getchar();}return x*f;}
//#define M
#define mo 100003
#define N 2010
int n, m, i, j, k;
int a, b, c, d;
int dp[N][N];

signed main()
{
// freopen("tiaoshi.in", "r", stdin);
// freopen("tiaoshi.out", "w", stdout);
a=read(); b=read(); c=read(); d=read(); k=read();
dp[0][0]=1;
for(i=1; i<=b+d; ++i)
{
dp[i][0]=1;
for(j=1; j<=k; ++j)
dp[i][j]=(dp[i-1][j]+dp[i-1][j-1]*(a+(i>b ? c : 0)-(j-1)))%mo;
}
printf("%lld", dp[b+d][k]);
return 0;
}