BJ3109 빵집
https://www.acmicpc.net/problem/3109
복잡하게 생각해 모든 경우를 다 조사하려고 하면 오히려 구현하기 어려워지고 실행시간도 길어진다.
좌측에서 우측으로 이어지는 파이프라인의 최대 수를 묻는 것이므로,
좌측의 가장 상단부터 가장 다른 파이프라인에 영향을 끼치지 않게끔 위쪽으로 이어가고, 연결이 불가능한 경우 다시 파이프라인을 설치하지 않은 상태로 복구해주면 된다.
package day0217;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.StringTokenizer;
public class Bread {
static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
static StringTokenizer st;
static int count = 0, N, M, max = 0;
static int[] dir = { -1, 0, 1 };
static char[][] map;
static boolean recur(int x, int y) {
if (y == M - 1) {
return true;
}
for (int i = 0; i < 3; i++) {
if (x + dir[i] >= 0 && x + dir[i] < N && map[x + dir[i]][y + 1] != 'x') {
map[x + dir[i]][y + 1] = 'x';
if(recur(x + dir[i], y + 1)) {
return true;
}
}
}
return false;
}
static void print() {
for(int i = 0; i < N; i++) {
for(int j = 0; j < M; j++) {
System.out.print(map[i][j]);
}
System.out.println();
}
System.out.println();
}
public static void main(String[] args) throws IOException {
st = new StringTokenizer(br.readLine(), " ");
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
map = new char[N][M];
for (int i = 0; i < N; i++) {
map[i] = br.readLine().toCharArray();
}
for (int i = 0; i < N; i++) {
if(recur(i, 0)) count++;
}
System.out.println(count);
}
}
Author And Source
이 문제에 관하여(BJ3109 빵집), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@mraz0210/BJ3109-빵집저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)