codeforces Round #241(div2) A解题报告

WBOY
发布: 2016-06-07 15:18:25
原创
1156 人浏览过

A. Guess a number! time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output A TV show called Guess a number! is gathering popularity. The whole Berland, the old and the young, are watchin

A. Guess a number!

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

A TV show called "Guess a number!" is gathering popularity. The whole Berland, the old and the young, are watching the show.

The rules are simple. The host thinks of an integer y and the participants guess it by asking questions to the host. There are four types of acceptable questions:

  • Is it true that y is strictly larger than number x?
  • Is it true that y is strictly smaller than number x?
  • Is it true that y is larger than or equal to number x?
  • Is it true that y is smaller than or equal to number x?

On each question the host answers truthfully, "yes" or "no".

Given the sequence of questions and answers, find any integer value of y that meets the criteria of all answers. If there isn't such value, print "Impossible".

Input

The first line of the input contains a single integer n (1?≤?n?≤?10000) — the number of questions (and answers). Next n lines each contain one question and one answer to it. The format of each line is like that: "sign x answer", where the sign is:

  • ">" (for the first type queries),
  • "" (for the second type queries),
  • ">=" (for the third type queries),
  • "" (for the fourth type queries).

All values of x are integer and meet the inequation ?-?109?≤?x?≤?109. The answer is an English letter "Y" (for "yes") or "N" (for "no").

Consequtive elements in lines are separated by a single space.

Output

Print any of such integers y, that the answers to all the queries are correct. The printed number y must meet the inequation ?-?2·109?≤?y?≤?2·109. If there are many answers, print any of them. If such value doesn't exist, print word "Impossible" (without the quotes).

Sample test(s)

input

4
>= 1 Y
 55 N
登录后复制

output

17
登录后复制

input

2
> 100 Y


<p>
</p><p>
output</p>
<pre class="brush:php;toolbar:false">Impossible
登录后复制

题目大意:

        猜数字,给出n个区间询问,然后同时给出该区间是否正确,然后求出任何符合上述区间要求的数字.


解法:

        先将答案范围规定为: [l,r] ;其中 l = -2*10^9 r = 2*10^9

        每次读入,更新一次上届和下届,l和r;

        读入结束后,

           l > r Impossible

           l

代码:

#include <cstdio>
#define INF 2000000000

int n;

int max(int a, int b) {
	if (a > b) return(a);
	return(b);
}

int min(int a, int b) {
	if (a ') {
				if (ch2 == '=')
					l = max(x, l);
				else
					l = max(x+1, l);
			}

			if (ch1 == '') {
				if (ch2 == '=')
					r = min(r, x-1);
				else
					r = min(r, x);
			}

			if (ch1 == '<br>
<br>

<p><br>
</p>
<p>.</p>


</cstdio>
登录后复制
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!