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 |
Tags
- Spring Cloud Config
- 달팽이
- 메모이제이션
- 다익스트라
- Gradle
- spring boot
- 백트래킹
- 완전 탐색
- 구현
- 이분 탐색
- 이분 매칭
- spring cloud
- 비트마스킹
- BFS
- 스택
- 서비스 디스커버리
- 스프링 시큐리티
- ZuulFilter
- dp
- 구간 트리
- 유레카
- 주울
- 게이트웨이
- 트리
- Zuul
- 도커
- Java
- docker-compose
- Logback
- 플로이드 와샬
Archives
- Today
- Total
Hello, Freakin world!
[백준 14890번][Java] 경사로 - 구현, 쉬운 듯 어려운 너 본문
이 문제도 꽤 까다로웠네요.
주의할 점은 경사로를 만들 수 있는지 체크할 때 올라가는 방향, 내려가는 방향 모두 체크해야 된다는 점입니다.
그리고 해당 블럭에 경사로가 이미 설치되어 있는지도 기록해줘야 합니다.
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
public class Main {
static int N, L;
static int[][] map;
public static void main(String[] args) throws IOException {
InputReader reader = new InputReader();
// InputReader reader = new InputReader("testcase.txt");
StringTokenizer st = new StringTokenizer(reader.readLine());
N = Integer.parseInt(st.nextToken());
L = Integer.parseInt(st.nextToken());
map = new int[N][N];
for (int i = 0; i < N; i++) {
st = new StringTokenizer(reader.readLine());
for (int j = 0; j < N; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
int ret = solve();
System.out.println(ret);
}
private static int solve() {
int ret = 0;
//행 검사
for (int row = 0; row < N; row++) {
if(isPassableRow(row)) ret++;
}
//열 검사
for (int col = 0; col < N; col++) {
if(isPassableCol(col)) ret++;
}
return ret;
}
private static boolean isPassableRow(int row) {
boolean[] hasSlope = new boolean[N];
for (int i = 0; i < N-1; i++) {
if(map[row][i] == map[row][i+1]) continue;
//올라가는 경사
if(map[row][i+1] - map[row][i] == 1 && canBuildSlopeOnRow(row, i, -1, hasSlope)) {
continue;
}
//내려가는 경사
if(map[row][i] - map[row][i+1] == 1 && canBuildSlopeOnRow(row, i+1, 1, hasSlope)) {
i = i+L-1;
continue;
}
return false;
}
return true;
}
private static boolean isPassableCol(int col) {
boolean[] hasSlope = new boolean[N];
for (int i = 0; i < N-1; i++) {
if(map[i][col] == map[i+1][col]) continue;
//올라가는 경사
if(map[i+1][col] - map[i][col] == 1 && canBuildSlopeOnCol(i, col, -1, hasSlope)) {
continue;
}
//내려가는 경사
if(map[i][col] - map[i+1][col] == 1 && canBuildSlopeOnCol(i+1, col, 1, hasSlope)) {
i = i+L-1;
continue;
}
return false;
}
return true;
}
private static boolean canBuildSlopeOnRow(int currentRow, int currentCol, int dc, boolean[] hasSlope) {
int col = currentCol;
int checkCount = L-1;
if(hasSlope[col]) return false;
while(checkCount > 0) {
int nextCol = col + dc;
if(!isRange(currentRow, nextCol)) return false;
if(map[currentRow][col] == map[currentRow][nextCol] && !hasSlope[nextCol]) {
checkCount--;
col = nextCol;
continue;
}
return false;
}
//빠져나왔다면 다리를 설치할 수 있는 경우다.
int start = Math.min(currentCol, col);
int limit = Math.max(currentCol, col);
for (int i = start; i <= limit; i++) {
hasSlope[i] = true;
}
return true;
}
private static boolean canBuildSlopeOnCol(int currentRow, int currentCol, int dr, boolean[] hasSlope) {
int row = currentRow;
int checkCount = L-1;
if(hasSlope[row]) return false;
while(checkCount > 0) {
int nextRow = row + dr;
if(!isRange(nextRow, currentCol)) return false;
if(map[nextRow][currentCol] == map[row][currentCol] && !hasSlope[nextRow]) {
checkCount--;
row = nextRow;
continue;
}
return false;
}
//빠져나왔다면 다리를 설치할 수 있는 경우다.
int start = Math.min(currentRow, row);
int limit = Math.max(currentRow, row);
for (int i = start; i <= limit; i++) {
hasSlope[i] = true;
}
return true;
}
private static boolean isRange(int r, int c) {
if(r < 0 || r >= N || c < 0 || c >= N) return false;
return true;
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public List<Character> readLineIntoCharList() throws IOException {
List<Character> l = new ArrayList<>();
while(true) {
int readVal = br.read();
if(readVal == '\n' || readVal == -1) break;
l.add((char)readVal);
}
return l;
}
public boolean ready() throws IOException {
return br.ready();
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 10757번][Java] 큰 수 A+B - 구현 (0) | 2020.11.07 |
---|---|
[백준 16234번][Java] 인구 이동 - 그래프 탐색, 구현 (0) | 2020.10.31 |
[백준 1918번][Java] 후위 표기식 - 스택, 후위 표기식 변환 알고리즘 (0) | 2020.10.25 |
[백준 15683번][Java] 감시 - 극한의 구현, 완전 탐색 (0) | 2020.10.24 |
[백준 17070번][Java] 파이프 옮기기 1 - DP, 메모이제이션 (0) | 2020.10.23 |
Comments