hdu-1050(贪心+模拟)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1050

思路:由图可知,1对应2,3对应4,以此类推,如果x,y是偶数则变为奇数;

每次输入两个区间,找区间重合几次,重合的部分最多的就是最终移动几次。

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;
int vc[];
int main(void)
{
int x,y,n,t,i,mx;
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
memset(vc,,sizeof(vc));
mx=;
while(n--)
{
scanf("%d %d",&x,&y);
if(x%==) x--;
if(y%==) y--;
if(x>y) swap(x,y);
for(i=x;i<=y;i++) vc[i]++,mx=vc[i]>mx?vc[i]:mx;
}
printf("%d\n",mx*);
}
return ;
}
上一篇:手机中点击链接或button按钮出现黄色边框的解决办法


下一篇:vue 动态合并单元格、并添加小计合计功能