C. Sasha and a Bit of Relax CF

C. Sasha and a Bit of Relax
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 ?
with ? integers. You need to count the number of funny pairs (?,?) (?≤?). To check if a pair (?,?) is a funny pair, take ???=?+?−12, then if ?−?+1 is an even number and ??⊕??+1⊕…⊕????=????+1⊕????+2⊕…⊕??, then the pair is funny. In other words, ⊕ of elements of the left half of the subarray from ? to ? 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 ?
(2≤?≤3⋅105

) — the size of the array.

The second line contains ?
integers ?1,?2,…,?? (0≤??<220

) — array itself.
Output

Print one integer — the number of funny pairs. You should consider only pairs where ?−?+1

is even number.
Examples
Input
Copy

5
1 2 3 4 5

Output
Copy

1

Input
Copy

6
3 2 2 3 7 6

Output
Copy

3

Input
Copy

3
42 4 2

Output
Copy

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.

题意

给你一个数列 求有多少区间满足

1 长度为偶数

2 前一半异或值等于后一半异或值

思路

前一半异或值等于后一半异或值 那么这个区间异或值为0 只需找前缀异或相等且长度为偶数即可

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int a[300005];
int sum[300005];
int num[(1<<20)+5][2];
int main()
{
    int n;
    scanf("%d", &n);
    for(int i = 1;i <= n;i++)
    {
        scanf("%d", &a[i]);
        sum[i] = sum[i-1]^a[i];
    }
    num[0][0]++;
    ll ans = 0;
    for(int i = 1;i <= n;i++)
    {
        ans += num[sum[i]][i&1];
        num[sum[i]][i&1]++;
    }
    printf("%lld\n",ans);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值