首页 > 其他分享 >Codeforces Round #814 (Div. 2)

Codeforces Round #814 (Div. 2)

时间:2022-08-17 10:26:39浏览次数:78  
标签:int Codeforces long Div 814 define

比赛链接

Codeforces Round #814 (Div. 2)

D2. Burenka and Traditions (hard version)

给出 \(n\) 个数,每次可以选择一个区间和一个数,将该区间的所有数异或上该数,代价为区间数除 \(2\) 的上取整,求将所有区间变为 \(0\) 的最少代价

解题思路

贪心

可以发现,上取整的结果都可以分为长度为 \(2\) 或 \(1\) 的组合,而对于一段区间,例如 \(a,b,c\),如果有 \(a\bigoplus b=c\),则其贡献可以减一,故可以发现一个贪心策略:维护前缀异或和,找不相交的两个相同的数,用 \(set\) 维护每段,\(for\) 一遍即可

  • 时间复杂度:\(O(nlogn)\)

代码

// Problem: D2. Burenka and Traditions (hard version)
// Contest: Codeforces - Codeforces Round #814 (Div. 2)
// URL: https://codeforces.com/contest/1719/problem/D2
// Memory Limit: 256 MB
// Time Limit: 1000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

// %%%Skyqwq
#include <bits/stdc++.h>
 
//#define int long long
#define help {cin.tie(NULL); cout.tie(NULL);}
#define pb push_back
#define fi first
#define se second
#define mkp make_pair
using namespace std;
 
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<LL, LL> PLL;
 
template <typename T> bool chkMax(T &x, T y) { return (y > x) ? x = y, 1 : 0; }
template <typename T> bool chkMin(T &x, T y) { return (y < x) ? x = y, 1 : 0; }
 
template <typename T> void inline read(T &x) {
    int f = 1; x = 0; char s = getchar();
    while (s < '0' || s > '9') { if (s == '-') f = -1; s = getchar(); }
    while (s <= '9' && s >= '0') x = x * 10 + (s ^ 48), s = getchar();
    x *= f;
}

int t,n,x;
int main()
{
    for(cin>>t;t;t--)
    {
    	cin>>n;
    	set<int> s;
    	s.insert(0);
    	int sum=0,res=n;
    	for(int i=1;i<=n;i++)
    	{
    		cin>>x;
    		sum^=x;
    		if(s.count(sum))res--,s.clear();
    		s.insert(sum);
    	}
    	cout<<res<<'\n';
    }
    return 0;
}

标签:int,Codeforces,long,Div,814,define
From: https://www.cnblogs.com/zyyun/p/16594048.html

相关文章

  • [Codeforces_gym_102136] I.Permutations again
    传送门DescriptionGivenasequence\(A_i\)consistingof\(N\)integers.Findthenumberofpairs\((L,R)\)forwhichthesubsegment\({A_L,A_{L + 1},......
  • *Codeforces Round #766 (Div. 2) C. Not Assigning(dfs)
    https://codeforces.com/contest/1627/problem/C给你一个n个顶点的树,顶点从1到n,边从1到n-1。树是没有圈的连通无向图。你必须给树的每条边分配整数权重,这样得到的图就是一......
  • CodeForces-1472F New Year's Puzzle
    NewYear'sPuzzle模拟如果尝试从左到右放,就会发现其实放的基本是唯一的,因此考虑直接模拟就好了针对当前列,分成三种状态:状态\(0\):上下都不能放状态\(1\):下面不......
  • Codeforces 阶段性总结提升
    卡在蓝名有一段时间了,对七月份以来的几场cf做一个总结,以求提升。总结提升:(最重要的点)常卡住的在自己平均实力水平以内的题:贪心。https://codeforces.com/contest/170......
  • Codeforces1699E Three Days Grace【数学】【DP】
    分析:一开始觉得是二分答案,发现行不通之后改为枚举最小值。现在我将这若干个数分解,假设分解完之后得到的最小值为$i$,那么我就是要在最小值为$i$的基础上尽量最小化分解的......
  • Codeforces Round #794 (Div. 2) (D~E)
    C.CircularLocalMiniMax我们都知道最构造方案是啥但要注意的是众数不能超过n/2这个条件要是跨越了n/2这个线就要取到等于号所以要想等于n/2并且合法就必须得是最......
  • Codeforces Round #813 (Div. 2) 题解A~E2
    https://codeforces.com/contest/1712估计也就我赛中才D都写不出来了A题题意:给你一个数组和一个正整数\(k\),每次可以选择数组的任意两个数交换,问你最少交换多少次能使......
  • Codeforces Round #813 (Div. 2)
    A.WonderfulPermutation题目描述God'sBlessingonThisPermutationForces!ARandomPebbleYouaregivenapermutationp_1,p_2,\ldots,p_noflengthnandapo......
  • Codeforces Round #813 (Div. 2)
    CodeforcesRound#813(Div.2) 1712A-WonderfulPermutation题意: #include<bits/stdc++.h>usingnamespacestd;constintmaxn=120;int......
  • Codeforces Round #813 (Div. 2) (C~D)
    C.SortZero最开始写了个n2的TLE了以后不知道咋优化只好观察性质发现我们要维护一个后缀很多人说要维护前缀其实也就少跑了60ms我们维护一个mp[]记录的是哪个数不......