Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 11580] Footprint 본문
반응형
명령어의 수가 최대 1000이므로 2000*2000의 배열공간만 있으면 모든 경우를 저장할 수 있다.
한번이라도 가본 좌표를 체크해주기만 하면 된다.
public class Main {
static int l;
static char c[];
static boolean visited[][] = new boolean[2001][2001];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
l = sc.nextInt();
c = sc.next().toCharArray();
dfs(1000, 1000, 0);
int cnt = 0;
for(int i=0; i<=2000; i++)
for(int j=0; j<=2000; j++)
if(visited[i][j])
cnt++;
System.out.println(cnt);
}
public static void dfs(int x, int y, int seq) {
visited[x][y] = true;
if(seq == l) return;
if(c[seq] == 'E') y++;
if(c[seq] == 'W') y--;
if(c[seq] == 'S') x--;
if(c[seq] == 'N') x++;
dfs(x, y, seq+1);
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 10157] 자리배정 (0) | 2019.07.23 |
---|---|
[백준 11586] 지영 공주님의 마법 거울 (0) | 2019.07.23 |
[백준 11578] 팀원 모집 (0) | 2019.07.23 |
[백준 11575] Affine Cipher (0) | 2019.07.20 |
[백준 13412] 서로소 쌍 (0) | 2019.07.20 |
Comments