当前位置 : 主页 > 网络编程 > PHP >

CodeForces 768C Jon Snow and his Favourite Number

来源:互联网 收集:自由互联 发布时间:2023-09-06
题目链接:​​http://codeforces.com/contest/768/problem/C​​​ 题意:给你长度为n的序列a,有k次操作,每次操作都是对a排序,然后对序列a的奇数为做a[i]^x操作,问你k次操作后序列的最小值


题目链接:​​http://codeforces.com/contest/768/problem/C​​​
题意:给你长度为n的序列a,有k次操作,每次操作都是对a排序,然后对序列a的奇数为做a[i]^x操作,问你k次操作后序列的最小值和最大值
解析:大胆猜测执行一定步数以后最小值和最大值会恒定下来(不然我不知道怎么写。。。),然后就这样过了。。。

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>
#include <queue>
#include <string>
#include <set>
#include <stack>
#include <map>
using namespace std;
const int maxn = 2e5+100;
int a[maxn];
int maxx[5],minn[5];
bool judge()
{
int flag1 = 1,flag2 = 1;
for(int j=1;j<5;j++)
{
if(maxx[j]!=maxx[j-1])
flag1 = 0;
}
for(int j=1;j<5;j++)
{
if(minn[j]!=minn[j-1])
flag2 = 0;
}
return flag1&&flag2;
}
int main()
{
int n,k,x;
scanf("%d %d %d",&n,&k,&x);
for(int i=0;i<n;i++)
scanf("%d",&a[i]);
memset(maxx,-1,sizeof(maxx));
memset(minn,-1,sizeof(minn));
for(int i=0;i<k;i++)
{
sort(a,a+n);
maxx[i%5] = a[n-1];
minn[i%5] = a[0];
if(judge())
break;
for(int j=0;j<n;j+=2)
a[j] ^= x;
}
sort(a,a+n);
printf("%d %d\n",a[n-1],a[0]);
return 0;
}


上一篇:CodeForces 785D Anton and School - 2
下一篇:没有了
网友评论