hdu-1050(贪心+模拟)
Posted 2018zxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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[1200]; int main(void) { int x,y,n,t,i,mx; scanf("%d",&t); while(t--) { scanf("%d",&n); memset(vc,0,sizeof(vc)); mx=0; while(n--) { scanf("%d %d",&x,&y); if(x%2==0) x--; if(y%2==0) y--; if(x>y) swap(x,y); for(i=x;i<=y;i++) vc[i]++,mx=vc[i]>mx?vc[i]:mx; } printf("%d ",mx*10); } return 0; }
以上是关于hdu-1050(贪心+模拟)的主要内容,如果未能解决你的问题,请参考以下文章