1002 Game (贪心模拟)
Posted ellery
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1002 Game (贪心模拟)相关的知识,希望对你有一定的参考价值。
1002 Game (贪心模拟)
Accepts: 572
Submissions: 6218
Time Limit: 2000/1000 MS (Java/Others)
Memory Limit: 32768/32768 K (Java/Others)
Problem Description
度度熊在玩一个好玩的游戏。 游戏的主人公站在一根数轴上,他可以在数轴上任意移动,对于每次移动,他可以选择往左或往右走一格或两格。 现在他要依次完成 n 个任务,对于任务 i,只要他处于区间 [ai,bi]上,就算完成了任务。 度度熊想知道,为了完成所有的任务,最少需要移动多少次? 度度熊可以任意选择初始位置。
Input
第一行一个整数 T (1≤T≤10)表示数据组数。 对于每组数据,第一行一个整数 n (1≤n≤1000) 表示任务数。 接下来 n 行,第 iii 行两个整数 ai,bi (1≤ai≤bi≤1000000) 表示任务对应的区间。
Output
对于每组数据,一行一个整数表示答案。
Sample Input
1
2
1 10
20 30
Sample Output
5
样例描述
选取10为起点,经过的轨迹为10-12-14-16-18-20。
#include<iostream> #include<stdio.h> #include<algorithm> using namespace std; typedef long long ll; int l,r; int solve(int x,int y){ int teml=max(x,l); int temr=min(y,r); if(teml<=temr){ l=teml,r=temr; return 0; } else if(r<x){ int res=(x-r+1)/2; l=x; if((x-r&1)&&x<y) r=x+1; else r=x; return res; } else if(l>y){ int res=(l-y+1)/2; r=y; if((l-y&1)&&x<y) l=y-1; else l=y; return res; } } int main(){ int t; scanf("%d",&t); while(t--){ ll ans=0; int m; scanf("%d",&m); l=1;r=1000000; while(m--){ int x,y; scanf("%d%d",&x,&y); ans+=solve(x,y); } printf("%lld ",ans); } }
这个代码太巧妙了
以上是关于1002 Game (贪心模拟)的主要内容,如果未能解决你的问题,请参考以下文章
2021.8.16提高B组模拟7T2 + P7413 [USACO21FEB] Stone Game(贪心)
2017 Multi-University Training Contest - Team 1 1002&&HDU 6034 Balala Power!字符串,贪心+排序(示例代码(代