程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> CF 538C(Tourist's Notes-貪心)

CF 538C(Tourist's Notes-貪心)

編輯:C++入門知識

CF 538C(Tourist's Notes-貪心)


 

C. Tourist's Notes time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

A tourist hiked along the mountain range. The hike lasted for n days, during each day the tourist noted height above the sea level. On the i-th day height was equal to some integer hi. The tourist pick smooth enough route for his hike, meaning that the between any two consecutive days height changes by at most 1, i.e. for all i's from 1 to n?-?1 the inequality |hi?-?hi?+?1|?≤?1 holds.

At the end of the route the tourist rafted down a mountain river and some notes in the journal were washed away. Moreover, the numbers in the notes could have been distorted. Now the tourist wonders what could be the maximum height during his hike. Help him restore the maximum possible value of the maximum height throughout the hike or determine that the notes were so much distorted that they do not represent any possible height values that meet limits |hi?-?hi?+?1|?≤?1.

Input

The first line contains two space-separated numbers, n and m (1?≤?n?≤?108, 1?≤?m?≤?105) — the number of days of the hike and the number of notes left in the journal.

Next m lines contain two space-separated integers di and hdi (1?≤?di?≤?n, 0?≤?hdi?≤?108) — the number of the day when the i-th note was made and height on the di-th day. It is guaranteed that the notes are given in the chronological order, i.e. for all i from 1 to m?-?1the following condition holds: di?di?+?1.

Output

If the notes aren't contradictory, print a single integer — the maximum possible height value throughout the whole route.

If the notes do not correspond to any set of heights, print a single word 'IMPOSSIBLE' (without the quotes).

Sample test(s) input
8 2
2 0
7 0
output
2
input
8 3
2 0
7 0
8 3
output
IMPOSSIBLE
Note

For the first sample, an example of a correct height sequence with a maximum of 2: (0,?0,?1,?2,?1,?1,?0,?1).

In the second sample the inequality between h7 and h8 does not hold, thus the information is inconsistent.


貪心,每段盡量向上爬。

 

 

 

 

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define For(i,n) for(int i=1;i<=n;i++)
#define Fork(i,k,n) for(int i=k;i<=n;i++)
#define Rep(i,n) for(int i=0;i=0;i--)
#define Forp(x) for(int p=pre[x];p;p=next[p])
#define Lson (x<<1)
#define Rson ((x<<1)+1)
#define MEM(a) memset(a,0,sizeof(a));
#define MEMI(a) memset(a,127,sizeof(a));
#define MEMi(a) memset(a,128,sizeof(a));
#define INF (2139062143)
#define F (100000007)
#define MAXN (100000000)
#define MAXM (100000+10)
long long mul(long long a,long long b){return (a*b)%F;}
long long add(long long a,long long b){return (a+b)%F;}
long long sub(long long a,long long b){return (a-b+(a-b)/F*F+F)%F;}
typedef long long ll;
int n,m;
int main()
{
//	freopen("c.in","r",stdin);
//	freopen(".out","w",stdout);
	
	cin>>n>>m;
	int d1,h1,ans;
	For(i,m)
	{
		int d,h;
		scanf("%d%d",&d,&h);
		if (i!=1)
		{
			if (d-d1

 

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved