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
- Synchronization
- 뮤텍스란?
- Proxy
- 세마포어와 뮤텍스의 차이
- 프록시
- 호스팅이란?
- Proxy Server
- 동기화
- 세마포어와 뮤텍스
- 다익스트라 알고리즘
- 세마포어란?
- 다익스트라
- 싸피
- Dijkstra Algorithm
- 삼성 청년 SW 아카데미
- 싸피 합격
- 최단 경로
- 클라우드 서버
- 싸피 면접 후기
- 플로이드 워셜
- 서버 호스팅
- 호스팅
- 프록시서버
- 플로이드 와샬
- SSAFY
- floyd-warshall
- 세마포어
- 웹 호스팅
- 뮤텍스
Archives
- Today
- Total
어제의 나보다 성장한 오늘의 나
[백준][17142][Java] 연구소 3 본문
www.acmicpc.net/problem/17142
문제풀이
모든 바이러스의 정보를 list에 저장해준다. 모든 빈칸에 바이러스를 퍼뜨릴 수 있는지 검사하는 zeroCnt 변수를 선언하였다.
DFS에 start 변수를 두어서 차례대로 활성화할 바이러스를 M개만큼 선택하게 하였다. 이후 선택된 바이러스를 퍼뜨리기 위해 Queue에 저장하여 BFS를 진행하였다.
주의사항으로 바이러스는 통과할 수 있음으로 map[x][y] ==1 (즉, 벽일 때) 확인하였고 빈칸일 경우 zero의 개수를 나타내는 변수의 값을 -1씩 해주었다. zero가 0이 되거나 기존의 최솟값보다 커진다면 더 이상 돌 필요가 없기 때문에 반복문을 멈추었고 밑에서 최솟값을 구해주었다.
코드
import java.io.*;
import java.util.*;
public class Main {
static int N, M, min, zeroCnt;
static int[][] map;
static boolean[][] visited;
static List<Pos> list;
static int[] isSelected;
static int[] dx = {0,0,-1,1};
static int[] dy = {1,-1,0,0};
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
map = new int[N][N];
list = new ArrayList<>();
min = Integer.MAX_VALUE;
isSelected = new int[M];
for(int i=0; i<N; i++) {
st = new StringTokenizer(br.readLine());
for(int j=0; j<N; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
if(map[i][j] == 2) list.add(new Pos(i,j));
//모든 빈칸에 바이러스 퍼뜨릴 수 있는지 검사하기위해
if(map[i][j] == 0) zeroCnt++;
}
}
//빈칸이 없는 경우
if(zeroCnt ==0) {
System.out.println(0);
return;
}
combi(0,0);
//모든 빈칸에 바이러스 퍼뜨릴 수 없을때
if(min == Integer.MAX_VALUE) min = -1;
System.out.println(min);
}
private static void combi(int cnt, int start) {
if(cnt == M) {
Queue<Pos> qu = new LinkedList<>();
visited = new boolean[N][N];
//활성화 비활성화 선택
int index =0;
for(int i=0; i<list.size(); i++) {
Pos pos = list.get(i);
if(isSelected[index] == i) {
//활성화
qu.offer(pos);
visited[pos.x][pos.y] = true;
index++;
if(index == M) break;
}
}
// 바이퍼스 퍼뜨리기
bfs(qu);
return;
}
for(int i=start; i<list.size(); i++) {
isSelected[cnt] = i;
combi(cnt+1, i+1);
}
}
private static void bfs(Queue<Pos> qu) {
int index =0;
int zero = zeroCnt;
while(!qu.isEmpty()) {
int size = qu.size();
for(int i=0; i<size; i++) {
Pos pos = qu.poll();
// 4방향으로 바이퍼스 퍼뜨리기
for(int k=0; k<4; k++) {
int x = pos.x + dx[k];
int y = pos.y + dy[k];
// 범위를 벗어나고 벽 또는 방문했을 경우
if(x<0 || x>=N || y<0 || y>=N || map[x][y] ==1 || visited[x][y]) continue;
qu.offer(new Pos(x,y));
visited[x][y] = true;
//빈칸을 바이러스로 활성화 했을 경우
if(map[x][y] == 0)zero--;
}
}
index++;
//더이상 검사할 필요가 없으므로
if(zero == 0) break;
//더 이상 최소값이 될 수 없으므로
if(min<index) return;
}
//모든 빈칸에 바이러스가 퍼졌다면
if(zero == 0) min = Math.min(min, index);
}
static class Pos {
int x;
int y;
public Pos(int x, int y) {
super();
this.x = x;
this.y = y;
}
}
}
'알고리즘 > 백준(BOJ)' 카테고리의 다른 글
[백준][11399][Java] ATM (0) | 2021.03.30 |
---|---|
[백준][12904][Java] A와 B (0) | 2021.03.30 |
[백준][16236][Java] 아기 상어 (0) | 2021.01.18 |
[백준][16234][Java] 인구 이동 (0) | 2021.01.17 |
[백준][13458][Java] 시험 감독 (0) | 2021.01.12 |
Comments