cf 167.div2 D.Dima and Two Sequences

    今天的cf完全不在状态,A题10分钟才读懂题意。目测要掉rating了

    这题题意很简单,就是按X升序排列会有多少种情况,一个排列组合的问题

    设相同x的元素个数为Xi  ,完全相同为2K(易知若完全相同有且仅有2个,比赛的时候就没想到这一点)

    ans= ∑Xi!/2^k

   之所以能在阶乘中除2^k,是因为k最大为n/2,而n!中的2的因子至少为n/2

/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include 
#include 
#include 
#include 
#include 
#define INF 1E9
using namespace std;
struct node
{
    int x,y;
};
bool cmp(node a,node b)
{
    if(a.x!=b.x)return a.x>=1;tt--;}//除去2^k
        ans=(ans*t);
        if(ans>m)ans%=m;
    }
    return ans;
}
int main()
{
    int n,t;
    scanf("%d",&n);
    n*=2;
    int i,j,k;
    for(i=k=1;i<=n;i++,k++)
    {
        scanf("%d",&t);
        org[i].x=t;
        org[i].y=k;
        if(k==n/2)k=0;
    }
    int m;
    scanf("%d",&m);
    sort(org+1,org+n+1,cmp);
    long long ans=1;
    int tt=0;
    for(i=1;i<=n;i++)
    {
        t=1;
        j=1;
        while(i<=n&&org[i].x==org[i+1].x)
        {

            if(org[i].y==org[i+1].y)j++;
            else
            {
                if(j>1)tt++;
                j=1;
            }
            i++;t++;
        }
        if(j>1)tt++;
        if(t>1)
        {
            ans=(ans*(fac(t,m,tt)));
            if(ans>=m)ans%=m;
        }
    }
    printf("%I64d\n",ans);
}


你可能感兴趣的:(cf 167.div2 D.Dima and Two Sequences)