码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 4901

时间:2014-07-31 23:41:00      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   art   

一个简单的dp,比赛的时候太坚信自己的小聪明没用二维数组一直WA到死;

bubuko.com,布布扣
#include<cstdio>
#include<cstring>
#define maxn 1009
#define mod 1000000007
using namespace std;

int num[maxn];
long long ci[maxn][1026],andci[maxn][1026];
bool vis[1026];

int main()
{
    int t,n;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        for(int i=1; i<=n; i++)
            scanf("%d",&num[i]);
        memset(andci,0,sizeof andci);
        memset(ci,0,sizeof ci);
        long long ans=0;
        for(int i=1; i<=n; i++)
        {
            ci[i][num[i]]++;
            for(int j=0; j<1024; j++)
            {
                if(ci[i-1][j]>0)
                {
                    ci[i][j^num[i]]+=ci[i-1][j];
                }
                ci[i][j]+=ci[i-1][j];
                ci[i][j]%=mod;
            }
        }
        for(int i=n; i>0; i--)
        {
            andci[i][num[i]]=1;
            vis[num[i]]=1;
            for(int j=0; j<1024; j++)
            {
                if(andci[i+1][j]>0)
                {
                    andci[i][j&num[i]]+=andci[i+1][j];
                    if(andci[i][j&num[i]]>mod)andci[i][j&num[i]]%=mod;
                    vis[j&num[i]]=1;
                }
            }
            for(int j=0; j<1024; j++)
            {
                ans+=(andci[i][j]*ci[i-1][j])%mod;
                ans%=mod;
            }
            for(int j=0; j<1024; j++)
            {
                andci[i][j]+=andci[i+1][j];
                if(andci[i][j]>mod)andci[i][j]%=mod;
            }
        }
        printf("%I64d\n",ans);
    }
    return 0;
}
View Code

 

hdu 4901,布布扣,bubuko.com

hdu 4901

标签:style   blog   http   color   os   io   for   art   

原文地址:http://www.cnblogs.com/yours1103/p/3883673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!