Codeforces Contest 1113 problem C Sasha and a Bit of Relax —— 两个相邻等长异或和相同的区间个数

Sasha likes programming. Once, during a very long contest, Sasha decided that he was a bit tired and needed to relax. So he did. But since Sasha isn’t an ordinary guy, he prefers to relax unusually. During leisure time Sasha likes to upsolve unsolved problems because upsolving is very useful.

Therefore, Sasha decided to upsolve the following problem:

You have an array a with n integers. You need to count the number of funny pairs (l,r) (l≤r). To check if a pair (l,r) is a funny pair, take mid=l+r−12, then if r−l+1 is an even number and al⊕al+1⊕…⊕amid=amid+1⊕amid+2⊕…⊕ar, then the pair is funny. In other words, ⊕ of elements of the left half of the subarray from l to r should be equal to ⊕ of elements of the right half. Note that ⊕ denotes the bitwise XOR operation.

It is time to continue solving the contest, so Sasha asked you to solve this task.

Input
The first line contains one integer n (2≤n≤3⋅105) — the size of the array.

The second line contains n integers a1,a2,…,an (0≤ai<220) — array itself.

Output
Print one integer — the number of funny pairs. You should consider only pairs where r−l+1 is even number.

Examples
inputCopy
5
1 2 3 4 5
outputCopy
1
inputCopy
6
3 2 2 3 7 6
outputCopy
3
inputCopy
3
42 4 2
outputCopy
0
Note
Be as cool as Sasha, upsolve problems!

In the first example, the only funny pair is (2,5), as 2⊕3=4⊕5=1.

In the second example, funny pairs are (2,3), (1,4), and (3,6).

In the third example, there are no funny pairs.

题意:

给你n个数,如果有一个区间,长度为偶数,并且左半边和右半边的区间异或和相等,那么就计入答案,问你有多少个这样的区间。

题解:

两个相邻区间异或和相等,那么这两个区间的异或和为0,只要找每个位置,与它相等的异或前缀和有多少个即可。

#include<bits/stdc++.h>
using namespace std;
const int N=5e4+5;
int a[N];
int main()
{
    int n,minn,sum=0;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%d",&a[i]),sum+=a[i];
    minn=sum;
    sort(a+1,a+1+n);
    for(int i=n;i>1;i--)
    {
        for(int j=2;j<a[i];j++)
        {
            if(a[i]%j==0)
            {
                minn=min(minn,sum-a[i]/j*(j-1)+a[1]*(j-1));
            }
        }
    }
    printf("%d\n",minn);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值