-
[SWEA] S/W 문제해결 기본 (2) - Ladder 1Algorithm/SWEA 2020. 4. 16. 16:51
[1210] Ladder 1
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14ABYKADACFAYh
- 100 X 100 크기의 2차원 배열로 주어진 사다에 대해서, 지정된 도착점에 대응되는 출발점 X를 반환하는 평면상에 사다리는 연속된 '1'로 표현된다. 도착 지점은 '2'로 표현된다.
- 어느 사다리를 고르면 X 표시에 도착하게 되는지 구해보자.
Solution
- 목적지점에서 올라가면서 왼쪽 오른쪽 체크 & 방향 전환
소스코드
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class Solution {static int T, n, m;static String[][] ladder;static int[] dx = { 0, -1, 0 };static int[] dy = { -1, 0, 1 };static StringTokenizer st;static String line;public static void main(String[] args) throws IOException {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));while (true) {T = stoi(br.readLine());init();int x = 99, y = 0;for (int i = 0; i < 100; i++) {ladder[i] = br.readLine().split(" ");}for(int i = 0; i<100; i++) {if(ladder[99][i].equals("2")) {y = i;}}System.out.println("#" + T + " " + solve(x, y));if (T == 10)break;}}static int solve(int x, int y) {int cx = x;int cy = y;int dir = 1;while (cx > 0) {// upif (dir == 1) {cx += dx[dir];cy += dy[dir];// leftif(cy > 0 && ladder[cx][cy-1].equals("1")) {dir = 0;continue;}// rightelse if(cy < 99 && ladder[cx][cy+1].equals("1")) {dir = 2;continue;}} else {cx += dx[dir];cy += dy[dir];if(cx > 0 && ladder[cx-1][cy].equals("1")) {dir = 1;continue;}}}return cy;}static void init() {ladder = new String[100][100];}static int stoi(String s) {return Integer.parseInt(s);}}cs 'Algorithm > SWEA' 카테고리의 다른 글
[SWEA] S/W 문제해결 기본(2) - Sum (0) 2020.04.16 [SWEA] S/W 문제해결 기본(2) - Ladder 2 (0) 2020.04.16 [SWEA] 초콜릿과 건포도 (0) 2020.04.15 [SWEA] 시험 (0) 2020.04.05 [SWEA] 진용이네 주차타워 (0) 2020.04.05