Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 1405] 미친 로봇 본문
반응형
완전탐색으로 로봇이 이동할 경로를 모두 체크해야 한다.
구현은 쉽지만 문제 해석이 잘 안되어서 참조하여 풀었다.
로직을 직접 해석하는 편이 좋을 것 같다.
public class Main {
static boolean visited[][] = new boolean[29][29];
static double a[] = new double[4];
static int dr[] = {-1, 1, 0, 0};
static int dc[] = {0, 0, -1, 1};
static double result = 0;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
for(int i=0; i<4; i++)
a[i] = Double.parseDouble(st.nextToken()) / 100;
dfs(14, 14, n, 1);
System.out.println(String.format("%.9f", result));
}
public static void dfs(int r, int c, int move, double d) {
if(move == 0) {
result += d;
return;
}
visited[r][c] = true;
for(int i=0; i<4; i++) {
int nr = r + dr[i];
int nc = c + dc[i];
if(!visited[nr][nc])
dfs(nr, nc, move-1, d*a[i]);
}
visited[r][c] = false;
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 11660] 구간 합 구하기 5 (0) | 2019.06.16 |
---|---|
[백준 11659] 구간 합 구하기 4 (0) | 2019.06.16 |
[백준 17136] 색종이 붙이기 (0) | 2019.06.13 |
[백준 2661] 좋은수열 (0) | 2019.06.13 |
[백준 10597] 순열장난 (0) | 2019.06.13 |
Comments