헝D의 일기장

https://school.programmers.co.kr/learn/courses/30/lessons/172928

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

나의 풀이

class Solution {
    public int[] solution(String[] park, String[] routes) {
        int[] answer = new int[2];
        int x=0, y=0;
        
        //S의 위치를 찾기
        for(int i=0; i<park.length; i++){
            if(park[i].contains("S")){
                x=i;
                for(int j=0; j<park[i].length(); j++){
                    if(park[i].charAt(j) == 'S'){
                        y=j;
                    }
                }
            }
        }
        
        for(int i=0; i<routes.length; i++){
            String[] temp=routes[i].split(" ");
            String dir = temp[0];
            int cnt = Integer.parseInt(temp[1]);
            int tempx=0, tempy=0;
            int chk=0;
            if(dir.equals("N")){
                tempx= x-cnt;
                tempy=y;
                if(check(tempx, tempy, park, routes) == 1){
                    continue;
                }
                for(int k=x; k >= x-cnt ; k--){
                    if(park[k].charAt(y)=='X'){
                        chk=1;
                        break;
                    }
                }
                if(chk == 1 ){
                    continue;
                }
            }else if(dir.equals("S")){
                tempx=x+cnt;
                tempy=y;
                 if(check(tempx, tempy, park, routes) == 1){
                    continue;
                }
                for(int k=x; k <= x+cnt ; k++){
                    if(park[k].charAt(y)=='X'){
                        chk=1;
                        break;
                    }
                }
                if(chk == 1 ){
                    continue;
                }
            }else if(dir.equals("W")){
                tempx=x;
                tempy=y-cnt;
                 if(check(tempx, tempy, park, routes) == 1){
                    continue;
                }
                for(int k=y; k >= y-cnt ; k--){
                    if(park[x].charAt(k)=='X'){
                        chk=1;
                        break;
                    }
                }
                if(chk == 1 ){
                    continue;
                }
            }else if(dir.equals("E")){
                tempx=x;
                tempy=y+cnt;
                 if(check(tempx, tempy, park, routes) == 1){
                    continue;
                }
                for(int k=y; k <= y+cnt ; k++){
                    if(park[x].charAt(k)=='X'){
                                  chk=1;
                        break;
                    }
                }
                if(chk == 1 ){
                    continue;
                }
            }
            
            x=tempx;
            y=tempy;
        }
        answer[0]=x;
        answer[1]=y;
        
        return answer;
    }
    
    public int check(int tempx, int tempy, String[] park, String[] routes){
        if(tempx < 0 || tempy < 0 || tempy >= park[0].length() || tempx >= park.length){
                return 1;
            }
        return 0;
    }
}

문제유형

구현 문제인것 같다..

level1 치고는 어려움. 정답률 32%

profile

헝D의 일기장

@헝D

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!