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
- 서로소
- java Collections.sort()
- 자바입출력
- java lambda
- char to str
- 상속
- Java
- 자바 재귀 조합
- jquery dom 계층 선택자
- jquery 속성선택자
- 알고리즘 그래프
- java 내부 클래스
- Interface
- 자바
- 자바스크립트 이벤트중지
- 자바스크립트 이벤트처리
- 순열 재귀
- str to char array
- 재귀함수
- inner class
- 자바 조합 재귀
- 알고리즘
- jquery 이벤트 처리
- 조합 재귀
- 순열코드
- parseInt()
- 자바 순열 코드
- 후위표기
- jquery 필터선택자
- 재귀
Archives
- Today
- Total
유블로그
BOJ 14502 연구소 Java 본문
BOJ 14502 연구소 Java
https://www.acmicpc.net/problem/14502
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.StringTokenizer;
public class Main {
static int N, M;
static int[][] grid;
static List<int[]> virus = new ArrayList<>();
static List<int[]> empty = new ArrayList<>();
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
grid = new int[N][M];
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < M; j++) {
grid[i][j] = Integer.parseInt(st.nextToken());
if (grid[i][j] == 2)
virus.add(new int[] { i, j });
if (grid[i][j] == 0)
empty.add(new int[] { i, j });
}
}
combi(0, 0);
System.out.println(MAX);
} // main
static int[] numbers = new int[3];
static void combi(int s, int cnt) {
if(cnt == 3) {
int[][] copy = new int[N][];
for (int i = 0; i < N; i++) {
copy[i] = Arrays.copyOf(grid[i], M);
}
for (int i = 0; i < 3; i++) {
int[] p = empty.get(numbers[i]);
copy[p[0]][p[1]] = 1;
}
solve(copy);
return;
}
for (int i = s; i < empty.size(); i++) {
numbers[cnt] = i;
combi(i+1, cnt+1);
}
} // combi
static int MAX = 0;
static void solve(int[][] grid) {
visited = new boolean[N][M];
for (int[] pos : virus) {
visited[pos[0]][pos[1]] = true;
spreadVirus(grid, pos[0], pos[1]);
}
int cntSafeArea = countSafe(grid);
if (MAX < cntSafeArea) {
MAX = cntSafeArea;
}
}
static int countSafe(int[][] grid) {
int count = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (grid[i][j] == 0)
count++;
}
}
return count;
}
static int[][] dir = new int[][] { { -1, 0 }, { 0, 1 }, { 1, 0 }, { 0, -1 } };
static boolean[][] visited;
static void spreadVirus(int[][] grid, int x, int y) {
grid[x][y] = 2;
for (int d = 0; d < 4; d++) {
int nx = x + dir[d][0];
int ny = y + dir[d][1];
if (!isInBound(nx, ny) || visited[nx][ny] || grid[nx][ny] != 0)
continue;
visited[nx][ny] = true;
spreadVirus(grid, nx, ny);
}
}
static boolean isInBound(int x, int y) {
if (x < 0 || y < 0 || x >= N || y >= M)
return false;
return true;
}
}
전형적인 일반 구현 문제다
3 <= N,M <= 8 로 배열이 작기 때문에
빈 칸( 0 ) 인 칸들중 3개를 뽑는 조합을 실행하여
3개를 뽑을 때마다 복사된 배열에 바이러스를 퍼뜨리고, 0인 칸을 세어서 MAX를 갱신한다.
'알고리즘' 카테고리의 다른 글
BOJ 1759 암호만들기 자바 java (0) | 2021.06.19 |
---|---|
BOJ 1806 부분합 자바 java (0) | 2021.06.19 |
BOJ 1916 최소비용 구하기 Java (0) | 2021.06.18 |
BOJ 9251 LCS Java (0) | 2021.06.17 |
BOJ 2580 스도쿠 Java (0) | 2021.06.17 |