티스토리 뷰
풀이
1) 2차원 배열을 4개를 쓴다. 원본, 연합, 바꾼값, 방문체크
2) 2중 포문을 돌며 bfs를 도는것을 반복한다.
2-1) 연합끼리 분류한다.
2-2) 같은 연합이면 전부 평균값으로 바꾼다.
2-3) 원본과 비교한다.
2-4) 원본과 같으면 더이상 바꿀수 없는거임. while문을 탈출한다.
3) 2번을 2000번 돌린다.
4) 반복횟수를 출력한다.
주의사항
1) 없다
package com.baekJoon;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.StringReader;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import java.util.Queue;
import java.util.StringTokenizer;
public class BJ_G5_16234_인구이동 {
static BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
static StringTokenizer tokens;
static int N,L,R,map[][],map2[][],team,t;
static boolean isVisited[][];
static Map<Integer, Integer> population;
public static void main(String[] args) throws NumberFormatException, IOException {
input = new BufferedReader(new StringReader(src));
tokens = new StringTokenizer(input.readLine());
N = Integer.parseInt(tokens.nextToken());
L = Integer.parseInt(tokens.nextToken());
R = Integer.parseInt(tokens.nextToken());
map = new int[N][N];
map2 = new int[N][N];
int map3[][] = new int[N][N];
isVisited = new boolean[N][N];
for(int r=0; r<N; r++) {
tokens = new StringTokenizer(input.readLine());
for(int c=0; c<N; c++) {
map[r][c] = Integer.parseInt(tokens.nextToken());
}
}
boolean flag = false;
for(t=0; t<=2000; t++) {
for(int r=0; r<N; r++) {
for(int c=0; c<N; c++) {
map3[r][c] = map[r][c];
}
}
population = new HashMap<>();
for(int r=0; r<N; r++) {
for(int c=0; c<N; c++) {
if(!isVisited[r][c]) {
team++;
bfs(r,c);
}
}
}
for(int r=0; r<N; r++) {
for(int c=0; c<N; c++) {
map[r][c] = population.get(map2[r][c]);
isVisited[r][c] = false;
if(map[r][c] != map3[r][c]) {
flag = true;
}
}
}
if(!flag) {
break;
}
flag = false;
population.clear();
team = 0;
}
System.out.println(t);
}
private static void bfs(int r, int c) {
Queue<Node> queue = new LinkedList<>();
queue.offer(new Node(r, c));
isVisited[r][c] = true;
int count = 0;
while(!queue.isEmpty()) {
Node front = queue.poll();
count++;
map2[front.r][front.c] = team;
if(population.get(team) == null) {
population.put(team, map[front.r][front.c]);
}else {
population.replace(team, population.get(team) + map[front.r][front.c]);
}
for(int d=0; d<4; d++) {
int nr = front.r + dr[d];
int nc = front.c + dc[d];
if(isIn(nr, nc) && !isVisited[nr][nc] &&
L <= Math.abs(map[front.r][front.c] - map[nr][nc]) &&
Math.abs(map[front.r][front.c] - map[nr][nc]) <= R) {
queue.offer(new Node(nr, nc));
isVisited[nr][nc] = true;
}
}
}
population.replace(team, population.get(team)/count);
}
static class Node{
int r;
int c;
public Node(int r, int c) {
super();
this.r = r;
this.c = c;
}
@Override
public String toString() {
return "Node [r=" + r + ", c=" + c + "]";
}
}
static int dr[] = {0,0,-1,1};
static int dc[] = {-1,1,0,0};
static boolean isIn(int r, int c) {
return (r>=0 && c>=0 && r<N && c<N);
}
static String src =
"2 40 50\r\n" +
"50 30\r\n" +
"20 40";
}
후기
배열을 많이써서 뭔가 더 잘 푸는 방법이 있을것 같다는 생각을 했고 실제로 내코드가 조금 느리고 메모리도 많은 편이었다. 그래도 크게 신경쓸 정도는 아니어서 그대로 두었다.
bfs 를 많이 푸니 점점 탐색에 대한 자신감이 오르는것 같다.
'Algorithm' 카테고리의 다른 글
[백준] G5 13975 파일 합치기 3 (java) (0) | 2021.01.17 |
---|---|
[백준] S2 18870 좌표 압축 (java) (0) | 2021.01.17 |
[백준] B1 10798 세로 읽기 (java) (0) | 2021.01.17 |
[백준] G5 14395 4연산 (java) (0) | 2021.01.17 |
[백준] B4 10797 10부제 (java) (0) | 2021.01.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- S2
- 코딩새내기
- 문자열
- DFS
- 리액트
- 알고리즘
- S3
- SWEA
- 우선순위큐
- react
- laugh4mile
- 리액트 네이티브
- G5
- map
- Spring Boot
- java
- 백트래킹
- BFS
- 객체지향
- Spring
- 구현
- 다익스트라
- 백준
- PriorityQueue
- g4
- 현꾸라지
- 그리디
- react native
- 자바
- 시뮬레이션
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함