ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [SWEA] S/W 문제해결 기본(2) - Ladder 2
    Algorithm/SWEA 2020. 4. 16. 17:25

    [1211] Ladder 2

    https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14BgD6AEECFAYh

    • 100 X 100 크기의 2차원 배열로 주어진 사다리에 대해서, 모든 출발점을 검사하여 가장 짧은 이동거리를 반환하는 코드를 작성하라.
    • 모든 사다리 경로에 대해 최소 거리 구하는 문제

     

     

    Solution

    • Ladder 1문제와 달리 지정된 도착점이 아닌 모든 도착점에 대해 사다리 타기를 하고 count가 최소인 출발점 return

     

     

    소스코드

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.StringTokenizer;
     
    public class Solution {
        static int T, n, m, min, answer;
        static String[][] ladder;
        static int[] dx = { 0-10 };
        static int[] dy = { -101 };
        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(" ");
                }
     
                min = Integer.MAX_VALUE;
                for (int i = 0; i < 100; i++) {
                    if (ladder[99][i].equals("1")) {
                        y = i;
                        solve(x, y);
                    }
                }
     
                System.out.println("#" + T + " " + answer);
     
                if (T == 10)
                    break;
            }
     
        }
     
        static void solve(int x, int y) {
            int count = 0;
            int cx = x;
            int cy = y;
            int dir = 1;
            while (cx > 0) {
                // up
                if (dir == 1) {
                    cx += dx[dir];
                    cy += dy[dir];
                    count++;
                    // left
                    if (cy > 0 && ladder[cx][cy - 1].equals("1")) {
                        dir = 0;
                        continue;
                    }
                    // right
                    else if (cy < 99 && ladder[cx][cy + 1].equals("1")) {
                        dir = 2;
                        continue;
                    }
                } else {
                    cx += dx[dir];
                    cy += dy[dir];
                    count++;
                    if (cx > 0 && ladder[cx - 1][cy].equals("1")) {
                        dir = 1;
                        continue;
                    }
                }
            }
     
            if (min > count) {
                min = count;
                answer = cy;
            }
        }
     
        static void init() {
            ladder = new String[100][100];
        }
     
        static int stoi(String s) {
            return Integer.parseInt(s);
        }
    }
    cs

    'Algorithm > SWEA' 카테고리의 다른 글

    [SWEA] S/W 문제해결 기본(3) - String  (0) 2020.04.16
    [SWEA] S/W 문제해결 기본(2) - Sum  (0) 2020.04.16
    [SWEA] S/W 문제해결 기본 (2) - Ladder 1  (0) 2020.04.16
    [SWEA] 초콜릿과 건포도  (0) 2020.04.15
    [SWEA] 시험  (0) 2020.04.05

    댓글

Designed by Tistory.