您的位置:首页 > 其它

New Year and North Pole CodeForces - 750B

2017-09-07 23:10 369 查看
In this problem we assume the Earth to be a completely round ball and its surface a perfect sphere. The length of the equator and any meridian is considered to be exactly
40 000 kilometers. Thus, travelling from North Pole to South Pole or vice versa takes exactly
20 000 kilometers.

Limak, a polar bear, lives on the North Pole. Close to the New Year, he helps somebody with delivering packages all around the world. Instead of coordinates of places to visit, Limak got a description how he should move, assuming that he starts from the
North Pole. The description consists of n parts. In the
i-th part of his journey, Limak should move
ti kilometers in the direction represented by a string
diri that is one of: "North", "South", "West", "East".

Limak isn’t sure whether the description is valid. You must help him to check the following conditions:

If at any moment of time (before any of the instructions or while performing one of them) Limak is on the North Pole, he can move only to the South.

If at any moment of time (before any of the instructions or while performing one of them) Limak is on the South Pole, he can move only to the North.

The journey must end on the North Pole.
Check if the above conditions are satisfied and print "YES" or "NO" on a single line.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 50).

The i-th of next
n lines contains an integer ti and a string
diri (1 ≤ ti ≤ 106,


) — the length and the direction of the
i-th part of the journey, according to the description Limak got.

Output

Print "YES" if the description satisfies the three conditions, otherwise print "NO", both without the quotes.

Example

Input
5
7500 South
10000 East
3500 North
4444 West
4000 North


Output
YES


Input
2
15000 South
4000 East


Output
NO


Input
5
20000 South
1000 North
1000000 West
9000 North
10000 North


Output
YES


Input
3
20000 South
10 East
20000 North


Output
NO


Input
2
1000 North
1000 South


Output
NO


Input
4
50 South
50 North
15000 South
15000 North


Output
YES


Note

Drawings below show how Limak's journey would look like in first two samples. In the second sample the answer is "NO" because he doesn't end on the North Pole.



只需要关心,北极点,和南极点,规定一下,在这两个点的走向.中间记录南北方向的位移,最后要求是0么,所以最后是0,还有就是中间不能>20000,<0,这样的话,就走多了,就不对了。

#include <cstdio>

using namespace std;
typedef long long ll;

char str[10];

int main()
{
ll sum=0;
int n;
scanf("%d",&n);
int flag_first=1;
for(int i=1;i<=n;i++){
ll dis;
scanf("%I64d %s",&dis,str);
if(sum==0&&str[0]!='S'){
flag_first=0;
}
if(sum==20000&&str[0]!='N'){
flag_first=0;
}
if(sum>20000||sum<0){
flag_first=0;
}
if(str[0]=='S'){
sum += dis;
}
if(str[0]=='N'){
sum -= dis;
}
if(sum>20000||sum<0){
flag_first=0;
}
}
if(flag_first&&sum==0){
printf("YES\n");
}
else
printf("NO\n");
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  思维