Submission #846414
Source Code Expand
Copy
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<string>
#include<stack>
#include<cstdio>
#include<cmath>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> P;
typedef pair<int,P> P1;
#define fr first
#define sc second
#define mp make_pair
#define pb push_back
#define rep(i,x) for(int i=0;i<x;i++)
#define rep1(i,x) for(int i=1;i<=x;i++)
#define rrep(i,x) for(int i=x-1;i>=0;i--)
#define rrep1(i,x) for(int i=x;i>0;i--)
#define sor(v) sort(v.begin(),v.end())
#define rev(s) reverse(s.begin(),s.end())
#define lb(vec,a) lower_bound(vec.begin(),vec.end(),a)
#define ub(vec,a) upper_bound(vec.begin(),vec.end(),a)
#define uniq(vec) vec.erase(unique(vec.begin(),vec.end()),vec.end())
#define mp1(a,b,c) P1(a,P(b,c))
const int INF=1000000000;
const int dir_4[4][2]={{1,0},{0,1},{-1,0},{0,-1}};
const int dir_8[8][2]={{1,0},{1,1},{0,1},{-1,1},{-1,0},{-1,-1},{0,-1},{1,-1}};
int main(){
string s;
cin >> s;
char c[4] = { 'S' , 'N' , 'E' , 'W' };
bool used[4];
rep(i,4)used[i] = false;
rep(i,s.size()){
rep(j,4){
if(s[i] == c[j]){
used[j] = true;
}
}
}
int cnt[2] = {};
rep(i,4)if(used[i])cnt[i/2] ++;
rep(i,2){
if(cnt[i] == 1){
puts("No");
return 0;
}
}
puts("Yes");
}
Submission Info
Submission Time |
|
Task |
A - Wanna go back home |
User |
yokozuna57 |
Language |
C++14 (GCC 5.4.1) |
Score |
200 |
Code Size |
1369 Byte |
Status |
AC |
Exec Time |
4 ms |
Memory |
256 KB |
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
200 / 200 |
Status |
|
|
Set Name |
Test Cases |
Sample |
s1.txt, s2.txt, s3.txt, s4.txt |
All |
01.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 13.txt, 15.txt, s1.txt, s2.txt, s3.txt, s4.txt |
Case Name |
Status |
Exec Time |
Memory |
01.txt |
AC |
4 ms |
256 KB |
04.txt |
AC |
4 ms |
256 KB |
05.txt |
AC |
4 ms |
256 KB |
06.txt |
AC |
4 ms |
256 KB |
07.txt |
AC |
4 ms |
256 KB |
08.txt |
AC |
4 ms |
256 KB |
09.txt |
AC |
4 ms |
256 KB |
10.txt |
AC |
4 ms |
256 KB |
11.txt |
AC |
4 ms |
256 KB |
13.txt |
AC |
4 ms |
256 KB |
15.txt |
AC |
4 ms |
256 KB |
s1.txt |
AC |
4 ms |
256 KB |
s2.txt |
AC |
4 ms |
256 KB |
s3.txt |
AC |
4 ms |
256 KB |
s4.txt |
AC |
4 ms |
256 KB |