Time Limit: 3000MS | Memory Limit: 131072KB | 64bit IO Format: %I64d & %I64u |
Description
开头背景介绍无用
You may wonder why this country has such an interesting tradition? It has a very long story, but I won't tell you :).
Let us continue, the party princess's knight win the algorithm contest. When the devil hears about that, she decided to take some action.
But before that, there is another party arose recently, the 'MengMengDa' party, everyone in this party feel everything is 'MengMengDa' and acts like a 'MengMengDa' guy.
While they are very pleased about that, it brings many people in this kingdom troubles. So they decided to stop them.
Our hero z*p come again, actually he is very good at Algorithm contest, so he invites the leader of the 'MengMengda' party xiaod*o to compete in an algorithm contest.
As z*p is both handsome and talkative, he has many girl friends to deal with, on the contest day, he find he has 3 dating to complete and have no time to compete, so he let you to solve the problems for him.
And the easiest problem in this contest is like that:
There is n number a_1,a_2,...,a_n on the line. You can choose two set S(a_s1,a_s2,..,a_sk) and T(a_t1,a_t2,...,a_tm). Each element in S should be at the left of every element in T.(si < tj for all i,j). S and T shouldn't be empty.
And what we want is the bitwise XOR of each element in S is equal to the bitwise AND of each element in T.
How many ways are there to choose such two sets? You should output the result modulo 10^9+7.
Input
For each test case, the first line contains a integers n.
The next line contains n integers a_1,a_2,...,a_n which are separated by a single space.
n<=10^3, 0 <= a_i <1024, T<=20.
Output
Sample Input
3
1 2 3
4
1 2 3 3
Sample Output
4
Source
动规。先预处理好XOR集合和AND集合在每个位置的最优解,之后枚举断点,左边是XOR集合,右边是AND集合,累加答案。
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
const int q=;
const int mxn=;
int n,k;
int a[mxn];
int f[mxn][mxn],t[mxn][mxn];
int main(){
int T;
scanf("%d",&T);
while(T--){
memset(f,,sizeof(f));
memset(t,,sizeof(t));
scanf("%d",&n);
int i,j;
for(i=;i<=n;i++)scanf("%d",&a[i]);
//xor
f[][]=; //边界
for(i=;i<=n;i++){
for(j=;j<;j++){
f[i][j]=(f[i-][j]+f[i-][j^a[i]])%q;
}
}
//and
for(i=;i<=n;i++)t[i][a[i]]=;
for(i=n;i>=;i--){
for(j=;j<;j++){
t[i][j]=t[i+][j];//不选
}
for(j=;j<;j++){//选
t[i][j&a[i]]=(t[i][j&a[i]]+t[i+][j])%q;
}
t[i][a[i]]=(t[i][a[i]]+)%q;
}
//
int ans=;
for(i=;i<n;i++){
for(j=;j<;j++)
ans=(ans+(long long)t[i+][j]*f[i-][j^a[i]])%q;//累加结果
}
printf("%d\n",ans);
}
return ;
}