티스토리 뷰
연구소 문제는 3개의 벽을 세우는 조합과
벽을 세운뒤 바이러스의 개수를 세어서
바이러스 영역이 제일 작을 때의 안전영역의 크기를 구했습니다.
- 임시벽은 3으로 표시하였습니다.
- 안전역역 = 공백구간 - 바이러스 개수 - 3(임시벽의 개수)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sdk.backjun.bfs; | |
import java.util.LinkedList; | |
import java.util.Queue; | |
import java.util.Scanner; | |
/** | |
* 백준, 14502 | |
* 연구소 | |
* | |
* @author whitebeard-k | |
* | |
*/ | |
public class Problem14502 { | |
static int[][] moves = { { 1, 0 }, { -1, 0 }, { 0, 1 }, { 0, -1 } }; | |
static int N; // 세로 x | |
static int M; // 가로 y | |
static int[][] map; // 0: 빈칸, 1: 벽, 2: 바이러스, 3: 임시벽 | |
static int[][] tempMap; | |
static int emptyCount; | |
static int maxSafetyCount; | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
N = sc.nextInt(); | |
M = sc.nextInt(); | |
map = new int[N][M]; | |
for (int x = 0; x < N; x++) { | |
for (int y = 0; y < M; y++) { | |
map[x][y] = sc.nextInt(); | |
if (map[x][y] == 0 || map[x][y] == 2) | |
emptyCount++; | |
} | |
} | |
sc.close(); | |
buildWall(0, 0); | |
System.out.println(maxSafetyCount); | |
} | |
// 임시 벽(3)을 생성, | |
public static void buildWall(int next, int count) { | |
if (count == 3) { | |
int virusCount = calcVirusZone(); | |
int safetyZone = emptyCount - virusCount - 3; | |
maxSafetyCount = Math.max(maxSafetyCount, safetyZone); | |
return; | |
} | |
for (int location = next; location < N * M; location++) { | |
int currentX = location / M; | |
int currentY = location % M; | |
if (map[currentX][currentY] == 0) { | |
map[currentX][currentY] = 3; | |
buildWall(location+1, count + 1); | |
map[currentX][currentY] = 0; | |
} | |
} | |
} | |
// spreadVirus()로 바이러스 영역을 확장하여 바이러스 총 개수 반환 | |
private static int calcVirusZone() { | |
tempMap = new int[N][M]; | |
int virusCount = 0; | |
for (int x = 0; x < N; x++) { | |
for (int y = 0; y < M; y++) { | |
if (map[x][y] == 2 && tempMap[x][y] == 0) { | |
virusCount += spreadVirus(new VirusPoint(x, y)); | |
} | |
} | |
} | |
return virusCount; | |
} | |
// 바이러스 영역 확장 | |
private static int spreadVirus(VirusPoint start) { | |
int virusCount = 1; | |
Queue<VirusPoint> queue = new LinkedList<VirusPoint>(); | |
queue.add(start); | |
tempMap[start.x][start.y] = 1; | |
while (!queue.isEmpty()) { | |
VirusPoint current = queue.poll(); | |
for (int[] move : moves) { | |
int nextX = current.x + move[0]; | |
int nextY = current.y + move[1]; | |
if (isMoveable(nextX, nextY)) { | |
tempMap[nextX][nextY] = 1; | |
queue.add(new VirusPoint(nextX, nextY)); | |
virusCount++; | |
} | |
} | |
} | |
return virusCount; | |
} | |
private static boolean isMoveable(int x, int y) { | |
if (0 <= x && x < N && 0 <= y && y < M && tempMap[x][y] == 0 && map[x][y] == 0) | |
return true; | |
return false; | |
} | |
} | |
class VirusPoint { | |
public int x; | |
public int y; | |
public VirusPoint(int x, int y) { | |
super(); | |
this.x = x; | |
this.y = y; | |
} | |
@Override | |
public String toString() { | |
return String.format("x: %d y: %d", x, y); | |
} | |
} |
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준][DP] 9184 신나는 함수 실행 (0) | 2019.02.02 |
---|---|
[백준] 2151 거울 설치 (0) | 2019.01.29 |
[백준] 4673 셀프 넘버 (0) | 2019.01.09 |
[백준][BFS] 1600 말이되고픈 원숭이 (0) | 2019.01.09 |
[백준][그리디] 1931 회의실 배정 (0) | 2018.09.18 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Hadoop
- 백준
- S3
- mysql
- HIVE
- airflow
- Python
- 파이썬
- 하둡
- oozie
- SPARK
- HDFS
- yarn
- nodejs
- error
- 하이브
- 알고리즘
- 다이나믹
- ubuntu
- 정올
- Tez
- bash
- emr
- build
- Linux
- java
- SQL
- hbase
- 오류
- AWS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함