cf Educational Codeforces Round 80 C. Two Arrays

原题:

C. Two Arrays

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given two integers n and m. Calculate the number of pairs of arrays (a,b) such that:the length of both arrays is equal to m;
each element of each array is an integer between 1 and n (inclusive); ai≤bi for any index i from 1 to m; array a is sorted in non-descending order; array b is sorted in non-ascending order.

As the result can be very large, you should print it modulo 10^9+7

.
Input

The only line contains two integers n
and m (1≤n≤1000, 1≤m≤10).
Output

Print one integer – the number of arrays a
and b satisfying the conditions described above modulo 109+7

.
Examples
Input

2 2

Output

5

Input

10 1

Output

55

Input

723 9

Output

157557417

Note

In the first test there are 5

suitable arrays:

a=[1,1],b=[2,2];
a=[1,2],b=[2,2];
a=[2,2],b=[2,2];
a=[1,1],b=[2,1];
a=[1,1],b=[1,1].

中文:

给你两个数,n和m,现在让你构造一个序列对,两个序列对的长度都是m,两个序列中的数字都是都是[1,n],两个序列中对应下标的数要满足 a i ≤ b i a_i ≤ b_i aibi,且a序列是非递减的,b序列是非递增的,问你这样的序列对的个数。序列对数量的结果对1e9 +7 取模。

代码:

#include<bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef pair<int,int> pii;
 
const int maxn = 1005;
const int maxm = 15;
const ll mod = 1e9 + 7;
 
int n,m;
 
 
int a[maxn][maxm],b[maxn][maxm];
int main()
{
    ios::sync_with_stdio(false);
    while(cin>>n>>m)
    {
        memset(a,0,sizeof(a));
        memset(b,0,sizeof(b));
        for(int i=1;i<=n;i++)
        {
            a[i][1]=b[i][1]=1;
        }
        for(int i=1;i<=m;i++)
        {
            b[n][i]=1;
        }
 
 
        for(int i=1;i<=n;i++)//num
        {
            for(int j=2;j<=m;j++)//len
            {
                for(int t=1;t<=i;t++)
                {
                    a[i][j] =  ((a[i][j]%mod) + (a[t][j-1]%mod))%mod;
 
                }
            }
        }
        /*
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=m;j++)
                cout<<a[i][j]<<" ";
            cout<<endl;
        }
        */
        for(int i=n-1;i>=1;i--)//num
        {
            for(int j=2;j<=m;j++)//len
            {
                for(int t=i;t<=n;t++)
                {
                    b[i][j] =  ((b[i][j]%mod) + (b[t][j-1]%mod))%mod;
 
                }
            }
        }
        int ans = 0;
        for(int i = 1;i<=n;i++)
        {
            for(int j=i;j<=n;j++)
            {
                ans = ((ans% mod) + (a[i][m]%mod * b[j][m]%mod))%mod;
            }
 
        }
        cout<<ans<<endl;
    }
    return 0;
}

解答:

这题纸上画一画很容易想出递推方程,因为序列a是非递减的,序列b是非递增的,而且又要满足 a i ≤ b i a_i ≤ b_i aibi这样的条件,那么
设置状态方程
a [ i ] [ j ] a[i][j] a[i][j]表示序列长度为j,且序列以i作为结尾的时候,可以形成的非递减序列的个数。那么递推方程可以写成如下

a [ i ] [ j ] = p = ∑ t = 1 i a [ t ] [ j − 1 ] a[i][j] = p = \sum\limits_{t=1}^ia[t][j-1] a[i][j]=p=t=1ia[t][j1]

同理,设置 b [ i ] [ j ] b[i][j] b[i][j]表示序列长度为j,且序列以i作为结尾的时候,可以形成非递减序列的个数。

b [ i ] [ j ] = p = ∑ t = i n b [ t ] [ j − 1 ] b[i][j] = p = \sum\limits_{t=i}^nb[t][j-1] b[i][j]=p=t=inb[t][j1]

最后结果可以表示为对所有 a [ i ] [ m ] ∗ b [ j ] [ m ] a[i][m] * b[j][m] a[i][m]b[j][m]和,其中要求 j > = i j>=i j>=i

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值