当前位置:网站首页>HDU4876ZCC loves cards(多校题)
HDU4876ZCC loves cards(多校题)
2022-07-07 18:44:00 【全栈程序员站长】
大家好,又见面了,我是全栈君。
ZCC loves cards
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 2362 Accepted Submission(s): 590
Problem Description
ZCC loves playing cards. He has n magical cards and each has a number on it. He wants to choose k cards and place them around in any order to form a circle. He can choose any several consecutive cards the number of which is m(1<=m<=k) to play a magic. The magic is simple that ZCC can get a number x=a1⊕a2…⊕am, which ai means the number on the ith card he chooses. He can play the magic infinite times, but once he begin to play the magic, he can’t change anything in the card circle including the order. ZCC has a lucky number L. ZCC want to obtain the number L~R by using one card circle. And if he can get other numbers which aren’t in the range [L,R], it doesn’t matter. Help him to find the maximal R.
Input
The input contains several test cases.The first line in each case contains three integers n, k and L(k≤n≤20,1≤k≤6,1≤L≤100). The next line contains n numbers means the numbers on the n cards. The ith number a[i] satisfies 1≤a[i]≤100. You can assume that all the test case generated randomly.
Output
For each test case, output the maximal number R. And if L can’t be obtained, output 0.
Sample Input
4 3 1
2 3 4 5Sample Output
7
Hint
⊕ means xor Author
镇海中学
Source
2014 Multi-University Training Contest 2
题意:给n个数。从中选出k个数,这k个数能够随意排列,一旦定了顺序就不能改变,在这个确定的顺序。选出m(m<=k)个数异或得到的值x,在这个顺序得到的全部x的值中找出一个最大值R,这些数中使得存在一个连续的范围L~R。
#include<stdio.h>
#include<string.h>
int n,k,L,ans[25];
int a[13],aa[13],R,flag[150];
int vist[10];
void find(int tk)
{
if(tk==k-1)
{
memset(flag,0,sizeof(flag));
for(int i=0;i<k-1;i++)
a[i+k]=a[i];
int maxa=0;
for(int i=0;i<k;i++)//枚举一个确定序列的连续片断的异或值
{
int x=a[i]; flag[x]=1; if(maxa<x)maxa=x;
for(int j=i+1;j-i+1<=k;j++)
{
x^=a[j]; flag[x]=1;if(maxa<x)maxa=x;
}
}
int r=0;
for(int i=L;i<=maxa;i++)//找出这个最大值R,使得这些数存在L~R范围的数都存在。
if(flag[i]==0)break;
else r=i;
if(r>R)R=r;
return ;
}
tk++;
for(int i=0;i<k;i++)
if(vist[i]==0)
{
a[tk]=aa[i]; vist[i]=1; find(tk); vist[i]=0;
}
}
bool panduan()//放宽条件(随意顺序)推断
{
memset(flag,0,sizeof(flag));
int maxa=0;
for(int i=1;i<(1<<k);i++)
{
int x=0;
for(int j=0;(1<<j)<=i;j++)
if((1<<j)&i)x^=aa[j];
flag[x]=1;
if(maxa<x)maxa=x;
}
int r=0;
for(int i=L;i<=maxa;i++)
if(flag[i]==0)break;
else r=i;
return r>R;
}
void CNM(int tk,int i)
{
if(tk==k-1)
{
if(panduan())
find(-1);
return ;
}
tk++;
for(int j=i+1;j<n;j++)
{
aa[tk]=ans[j]; CNM(tk,j);
}
}
int main()
{
while(scanf("%d%d%d",&n,&k,&L)>0)
{
R=0; memset(vist,0,sizeof(vist));
for(int i=0;i<n;i++)
scanf("%d",&ans[i]);
CNM(-1,-1);
printf("%d\n",R);
}
}发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/116456.html原文链接:https://javaforall.cn
边栏推荐
- Introduction to referer and referer policy
- [award publicity] issue 22 publicity of the award list in June 2022: Community star selection | Newcomer Award | blog synchronization | recommendation Award
- You want to kill a port process, but you can't find it in the service list. You can find this process and kill it through the command line to reduce restarting the computer and find the root cause of
- Cantata9.0 | 全 新 功 能
- Nebula importer data import practice
- 解决使用uni-app MediaError MediaError ErrorCode -5
- 测量楼的高度
- 【函数递归】简单递归的5个经典例子,你都会吗?
- 阿里云有奖体验:如何通过ECS挂载NAS文件系统
- How to meet the dual needs of security and confidentiality of medical devices?
猜你喜欢

Small guide for rapid formation of manipulator (12): inverse kinematics analysis

软件缺陷静态分析 CodeSonar 5.2 新版发布

OneSpin 360 DV新版发布,刷新FPGA形式化验证功能体验

Onespin | solve the problems of hardware Trojan horse and security trust in IC Design

Cantata9.0 | new features

One click deployment of any version of redis
![[paper reading] maps: Multi-Agent Reinforcement Learning Based Portfolio Management System](/img/76/b725788272ba2dcdf866b28cbcc897.jpg)
[paper reading] maps: Multi-Agent Reinforcement Learning Based Portfolio Management System

Nebula importer data import practice

Helix QAC 2020.2 new static test tool maximizes the coverage of standard compliance

The latest version of codesonar has improved functional security and supports Misra, c++ parsing and visualization
随机推荐
You want to kill a port process, but you can't find it in the service list. You can find this process and kill it through the command line to reduce restarting the computer and find the root cause of
EasyGBS级联时,上级平台重启导致推流失败、画面卡住该如何解决?
CodeSonar网络研讨会
openGl超级宝典学习笔记 (1)第一个三角形「建议收藏」
恶魔奶爸 C
神兵利器——敏感文件发现工具
微服务远程Debug,Nocalhost + Rainbond微服务开发第二弹
Codesonar Webinar
Spark 判断DF为空
Micro service remote debug, nocalhost + rainbow micro service development second bullet
MySQL约束之默认约束default与零填充约束zerofill
写一下跳表
Read PG in data warehouse in one article_ stat
不落人后!简单好用的低代码开发,快速搭建智慧管理信息系统
Introduction to referer and referer policy
Is it safe to open a stock account at present? Can I open an account online directly.
Lingyun going to sea | yidiantianxia & Huawei cloud: promoting the globalization of Chinese e-commerce enterprise brands
95年专注安全这一件事 沃尔沃未来聚焦智能驾驶与电气化领域安全
Ubuntu安装mysql8遇到的问题以及详细安装过程
微服务远程Debug,Nocalhost + Rainbond微服务开发第二弹