记录一个菜逼的成长。。
题目大意:
把地球看成圆,周长为40000公里
一个人站在北极出发,有n个指令,
每个指令:t dir (向dir方向走t公里)
dir : “North”, “South”, “West”, “East”.
判断指令的合法性,并且最后是否回到北极。
注意:站在北极只能往南走,站在南极只能往北走
简单的判断,
但要注意 题目说了站在北极只能往南走,也就是说不能往北,东,西走。
还要注意是否会越过北极或南极
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <deque>
#include <cctype>
#include <bitset>
#include <cmath>
#include <cassert>
using namespace std;
#define ALL(v) (v).begin(),(v).end()
#define cl(a,b) memset(a,b,sizeof(a))
#define bp __builtin_popcount
#define pb push_back
#define mp make_pair
#define fin freopen("D://in.txt","r",stdin)
#define fout freopen("D://out.txt","w",stdout)
#define lson t<<1,l,mid
#define rson t<<1|1,mid+1,r
#define seglen (node[t].r-node[t].l+1)
#define pi 3.1415926
#define exp 2.718281828459
#define lowbit(x) (x)&(-x)
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> PII;
typedef pair<LL,LL> PLL;
typedef vector<PII> VPII;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
template <typename T>
inline void read(T &x){
T ans=0;
char last=' ',ch=getchar();
while(ch<'0' || ch>'9')last=ch,ch=getchar();
while(ch>='0' && ch<='9')ans=ans*10+ch-'0',ch=getchar();
if(last=='-')ans=-ans;
x = ans;
}
char dir[10];
int main()
{
int n;
while(~scanf("%d",&n)){
//初始坐标
int x = 0,y = 0;
int flag = 1,k;
for( int i = 0; i < n; i++ ){
scanf("%d%s",&k,dir);
if(!flag)continue;
if(dir[0] == 'N'){
if(!y){
flag = 0;
}
else {
y -= k;
if(y < 0)flag = 0;
}
}
if(dir[0] == 'S'){
if(y == 20000){
flag = 0;
}
else {
y += k;
if(y > 20000)flag = 0;
}
}
if(dir[0] == 'W'){
//只有不在南北极才能往西走
if(y > 0 && y < 20000)
x -= k;
else flag = 0;
}
if(dir[0] == 'E'){
//只有不在南北极才能往东走
if(y > 0 && y < 20000)
x += k;
else flag = 0;
}
}
if(!flag){
puts("NO");
}
else {
//判断是否回到北极
if(y!=0)puts("NO");
else puts("YES");
}
}
return 0;
}