Codeforces Round #277.5(Div. 2) F. Special Matrices【思维+Dp】好题~好题~

351 篇文章 2 订阅

F. Special Matrices
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

An n × n square matrix is special, if:

  • it is binary, that is, each cell contains either a 0, or a 1;
  • the number of ones in each row and column equals 2.

You are given n and the first m rows of the matrix. Print the number of special n × n matrices, such that the first m rows coincide with the given ones.

As the required value can be rather large, print the remainder after dividing the value by the given number mod.

Input

The first line of the input contains three integers n, m, mod (2 ≤ n ≤ 500, 0 ≤ m ≤ n, 2 ≤ mod ≤ 109). Then m lines follow, each of them contains n characters — the first rows of the required special matrices. Each of these lines contains exactly two characters '1', the rest characters are '0'. Each column of the given m × n table contains at most two numbers one.

Output

Print the remainder after dividing the required value by number mod.

Examples
Input
3 1 1000
011
Output
2
Input
4 4 100500
0110
1010
0101
1001
Output
1
Note

For the first test the required matrices are:

011
101
110

011
110
101

In the second test the required matrix is already fully given, so the answer is 1.


题目大意:

让你构造出来一个N*N的矩阵,使得每行每列保证只有两个1。

现在已经给出M行的矩阵部分,问最终可以得到多少个可行方案。


思路(思路源自:http://blog.csdn.net/u014733623/article/details/41250593):


1、一开始想的是设定dp【i】【x】【y】【2(k)】【2(l)】表示到第i列 ,这一列的放置1的两个位子在x,y上,对应这两行上边出现1的个数为k,l个的方案数。

状态转移方程很好写,但是时间复杂度不允许,会达到O(n^5*4);

再之后就不会设定了。

其实反向想一下,考虑剩余部分就好了。


2、设定dp【s1】【s2】表示到第i行,剩余s1个列可以放置两个1,剩余s2个列可以放置1个1的方案数。

那么就有:

dp【s1-2】【s2】=dp【s1】【s2】*C(s1,2);

dp【s1-1】【s2】=dp【s1】【s2】*C(s1,1)*C(s2,1);

dp【s1】【s2-2】=dp【s1】【s2】*C(s2,2);


我们可以枚举行和s1,s2=(n-i+1)*2-s1*2【剩余需要放置1的个数-s1*2==剩余需要放置1的个数==s2】;

时间复杂度O(n^2);

解法真的很巧妙。点个赞。


Ac代码:

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<vector>
using namespace std;
#define ll __int64
char a[505][505];
ll dp[606][606];
ll num[606];
int main()
{
    ll n,m,mod;
    while(~scanf("%I64d%I64d%I64d",&n,&m,&mod))
    {
        memset(dp,0,sizeof(dp));
        memset(num,0,sizeof(num));
        for(ll i=1;i<=m;i++)scanf("%s",a[i]+1);
        ll s1=0;
        ll s2=0;
        for(ll i=1;i<=m;i++)
        {
            for(ll j=1;j<=n;j++)
            {
                if(a[i][j]=='1')num[j]++;
            }
        }
        for(ll j=1;j<=n;j++)
        {
            if(num[j]==0)s1++;
            if(num[j]==1)s2++;
        }
        dp[s1][s2]=1;
        for(ll i=m+1;i<=n;i++)
        {
            for(ll s1=0;s1<=n;s1++)
            {
                ll s2=(n-i+1)*2-s1*2;
                if(s2<0||s2>n)continue;
                if(s1-2>=0)dp[s1-2][s2+2]+=(dp[s1][s2]*(s1)*(s1-1)/2)%mod;
                if(s1-1>=0)dp[s1-1][s2]+=(dp[s1][s2]*(s1)*(s2))%mod;
                if(s2-2>=0)dp[s1][s2-2]+=(dp[s1][s2]*(s2)*(s2-1)/2)%mod;
            }
        }
        printf("%I64d\n",dp[0][0]);
    }
}





  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值