Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Intellj
- 쿼리
- 페이징
- aws
- JPA
- SQL
- 자바
- Spring
- db
- Spring Boot
- PL/SQL
- retry
- MVC
- Spring Cloud Feign
- feign
- 백준
- 자료구조
- MST
- Spring Cloud
- 데이터베이스
- 디자인 패턴
- Jenkins
- 알고리즘
- 클라우드
- Kafka
- 코딩
- golang
- 운영체제
- DP
- 오라클
Archives
- Today
- Total
justgo_developer
[JAVA] 백준 14890 경사로 본문
728x90
반응형
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | import java.util.*; public class Main { static int N; static int L; static int[][] map; static boolean[][] visit; static int cnt; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); L = sc.nextInt(); map = new int[101][101]; visit = new boolean[101][101]; cnt = 0; for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ map[i][j] = sc.nextInt(); } } for(int i=0;i<N;i++){ init(); x_dfs(0,i); init(); y_dfs(i,0); } System.out.println(cnt); } public static void x_dfs(int x, int y){ if(x == N-1){ cnt++; return; } if(map[x][y] == map[x+1][y]){ x_dfs(x+1,y); } else if(map[x+1][y]-1 == map[x][y]){ if(x-L+1<0) return; for(int i=x;i>x-L;i--){ if(visit[i][y]==false){ visit[i][y] = true; } else return; } x_dfs(x+1,y); } else if(map[x+1][y]+1 == map[x][y]){ if(x+L>=N) return; for(int i=x+1;i<x+1+L;i++){ if(visit[i][y]==false && map[x][y]==map[i][y] +1) visit[i][y] = true; else return; } x_dfs(x+1,y); } } public static void y_dfs(int x, int y){ if(y == N-1){ cnt++; return; } if(map[x][y] == map[x][y+1]){ y_dfs(x,y+1); } else if(map[x][y+1]-1 == map[x][y]){ if(y-L+1<0) return; for(int i=y;i>y-L;i--){ if(visit[x][i]==false){ visit[x][i] = true; } else return; } y_dfs(x,y+1); } else if(map[x][y+1]+1 == map[x][y]){ if(y+L>=N) return; for(int i=y+1;i<y+1+L;i++){ if(visit[x][i]==false && map[x][y]==map[x][i] +1) visit[x][i] = true; else return; } y_dfs(x,y+1); } } public static void init(){ for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ visit[i][j] = false; } } } } | cs |
728x90
반응형
'IT > 코딩 문제 풀이' 카테고리의 다른 글
[JAVA] 백준 14889 스타트와 링크 (0) | 2018.12.01 |
---|---|
[JAVA] 백준 14888 연산자 끼워넣기 (0) | 2018.12.01 |
[JAVA] 백준 15655 N과 M (6) (0) | 2018.09.10 |
[JAVA] 백준 15657 N과 M (8) (0) | 2018.09.10 |
[JAVA] 백준 1012 유기농배추 (0) | 2018.01.10 |