首页 > 其他分享 >cf 827 div 4 G

cf 827 div 4 G

时间:2022-10-15 12:11:58浏览次数:41  
标签:node const cf ans 827 include div

题意

给定一个数列,确定选数顺序,假设每次取出为x,要使得ans|x 最大,并且令ans|=x,求选数顺序。

题解

我们可以建一个大根堆,设堆顶为z,判断一下z&ans是否等于0,如果是那就是要选的数,否则就将z弹出,将z-=z&ans放入堆中。

code

#include<cstdio>
#include<algorithm>
#include<queue>
#define fo(i,a,b) for (int (i)=(a);(i)<=(b);(i)++)
using namespace std;
const int N=2e5+5;
typedef long long ll;
int a[N],n,tot;
ll b[40],ans,xx,yy;
struct node{
	int x,y;
};
node k;
priority_queue<node> q;
bool operator < (const node &a, const node &b){
	return a.x<b.x;
}
int main(){
//	freopen("data.in","r",stdin);
	
	int T;
	scanf("%d",&T);
	b[0]=1;
	fo(i,1,30) b[i]=b[i-1]*2;
	
	while (T--){

		scanf("%d",&n);
		fo(i,1,n) scanf("%d",&a[i]);
		
		fo(i,1,n) q.push((node){a[i],a[i]});
		
		ans=0; 
		tot=0;
		
		while (tot<n) { 
			while (1) {
				k=q.top();
				q.pop();
				xx=k.x;
				yy=k.y;
				if ((ans&xx)) {
					xx-=ans&xx;
					q.push((node){xx,yy});
				}
				else{
					ans|=xx;
					printf("%d ",yy);
					tot++;
					break;
				}
			}
		}
		printf("\n");
	}
	return 0;
}

标签:node,const,cf,ans,827,include,div
From: https://www.cnblogs.com/ganking/p/16793876.html

相关文章

  • Codeforces Round #747 (Div. 2) D // 扩展域并查集
    题目来源:CodeforcesRound#747(Div.2)D-TheNumberofImposters题目链接:Problem-D-Codeforces题意有\(n\)个人,每个人拥有\(imposter\)或\(crewmate\)的身份......
  • Codeforces Round #827 (Div. 4) ABCDEFG
    https://codeforces.com/contest/1742A.Sum#include<bits/stdc++.h>usingnamespacestd;typedeflonglongLL;typedefpair<LL,LL>PII;constLLN=500200,M=2002;......
  • Codeforces Round #827 (Div. 4)(A~G)
     A.Sum1voidsolve(){2inta[3];3for(inti=0;i<3;i++)cin>>a[i];4sort(a,a+3);5if(a[2]==a[1]+a[0])cout<<"......
  • MaoWei-2021-GeneratingSmoothPoseSequencesForDiverseHumanMotionPredition
    #GeneratingSmoothPoseSequencesforDiverseHumanMotionPrediction#paper1.paper-info1.1MetadataAuthor::[[WeiMao]],[[MiaomiaoLiu]],[[MathieuSa......
  • Almost Triple Deletions(CF1699D)
    AlmostTripleDeletions(CF1699D)考虑DP。设$dp_i$为强制保留这一个数,最多可以剩下几个数。发现:当一个区间$[l,r]$满足$len\equiv0(mod\2)\land区......
  • CF1690G
    用map暴力维护每段,如果不小于前一段就把这段直接删了,否则往后暴力删段直到某段小于这一段。每次输出map的大小即可。因为总共至多新建\(n+m\)个段,所以均摊复杂度\(......
  • CF1741A Compare T-Shirt Sizes
    题链:cflugou赛时吃了一波罚时(?代码挺长(?Description给你两个衣服尺码,比较他们的大小。Analysis细节题。首先我们将所有尺码分为\(\text{S}\)、\(\text{M}\)、\(\t......
  • CF1468J
    自闭了,*1800都不会了。。先连所有边权不大于\(k\)的边,若图能连通,直接找一条边权与\(k\)最接近的改一下就好了。否则跑一遍Kruskal。具体细节看代码。Code:#inclu......
  • CF1252K
    已经是啥也不会了呜呜呜考虑这个\(A=A+B\),\(B=A+B\)是可以表达成矩阵形式的。\(\begin{bmatrix}a&b\end{bmatrix}\begin{bmatrix}1&0\\1&1\end{bmatrix}=\begin{bmat......
  • CF1693F I Might Be Wrong 题解
    感觉是一个比较套路的题目。思路很容易就可以胡出一个贪心策略。每一次操作都选一个从前面开始最长的\(0,1\)数量相同的序列进行操作。看一眼好像样例都能过。可以......