Total Submission(s): 1367 Accepted Submission(s): 581
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.
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.
#include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #define ll long long using namespace std; const ll mod=1000000007; const int maxn=1050; const int N=1024; ll dp[maxn][maxn],Dp[maxn][maxn],Dp2[maxn][maxn]; int a[maxn],pre[maxn],n,m; void input() { scanf("%d",&n); for(int i=1; i<=n; i++) scanf("%d",&a[i]); memset(dp,0,sizeof(dp)); memset(Dp,0,sizeof(Dp)); memset(Dp2,0,sizeof(Dp2)); } void solve() { for(int i=1; i<=n; i++) { dp[i][a[i]]=1; for(int j=N; j>=0; j--) { dp[i][j]=(dp[i][j]+dp[i-1][j])%mod; dp[i][j^a[i]]=(dp[i][j^a[i]]+dp[i-1][j])%mod; } } //cout<<dp[2][3]<<endl; reverse(a+1,a+n+1); for(int i=1; i<=n; i++) { Dp[i][a[i]]=1; Dp2[i][a[i]]=1; for(int j=N; j>=0; j--) { Dp[i][j]=(Dp[i][j]+Dp[i-1][j])%mod; Dp[i][j&a[i]]=(Dp[i][j&a[i]]+Dp[i-1][j])%mod; Dp2[i][j&a[i]]=(Dp2[i][j&a[i]]+Dp[i-1][j])%mod; } } ll ans=0; for(int i=1; i<n; i++) { int k=n-i; for(int j=0; j<=N; j++) { if(dp[i][j] && Dp[k][j]) { ans=(ans+dp[i][j]*Dp2[k][j]%mod)%mod; } } } printf("%I64d\n",ans%mod); } int main() { int T; scanf("%d",&T); while(T--) { input(); solve(); } return 0; }
版权声明:本文博主原创文章,博客,未经同意不得转载。