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 |
Tags
- 재귀함수
- deque
- 우선순위큐
- 구현
- COSPRO
- 백준
- BFS
- 이젠 골드구현도 어렵네..
- QUICKSTARTGUIDE
- 시뮬레이션
- 엘라스틱서치
- 자바PS
- 완전탐색
- 게더타운시작
- 백준코딩테스트
- YBMCOS
- COSPROJAVA1급
- DFS
- dp
- 알고리즘
- 취득후기
- 다익스트라
- 다이나믹프로그래밍
- spring
- 01BFS
- 네트워크플로우
- 세그먼트트리
- GatherTown
- PS
- java
Archives
- Today
- Total
공부공간
BOJ - 1002 ) 적록색약 JAVA 본문
https://www.acmicpc.net/problem/10026
어쩌다 보니 JAVA로 풀게되었다.
BFS로 한번돌고 맵을 바꾸고 한번돌면 된다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
import java.util.LinkedList;
import java.util.Queue;
class coordi {
int x;
int y;
public coordi(int x, int y){
this.x = x;
this.y = y;
}
}
public class Main {
static int dx[] = {0,0,1,-1};
static int dy[] = {1,-1,0,0};
static char map[][];
static boolean visit[][];
static int size;
public static int BFS() {
Queue<coordi> Q = new LinkedList<coordi>();
int cnt =0;
for(int y = 0 ; y < size ; y ++) {
for(int x = 0; x < size ; x++) {
if(!visit[y][x]) {
cnt +=1;
Q.add( new coordi(x,y));
visit[y][x]= true;
while(!Q.isEmpty()) {
coordi now = Q.poll();
for(int index =0 ; index < 4 ; index ++) {
int nx = now.x + dx[index];
int ny = now.y + dy[index];
if(nx >=0 && ny >= 0 && nx <size && ny <size) {
if(!visit[ny][nx] && map[ny][nx] == map[now.y][now.x]) {
visit[ny][nx] = true;
Q.add(new coordi(nx,ny));
}
}
}
}
}
}
}
return cnt;
}
public static void main(String[] args) throws Exception{
Scanner sc = new Scanner(System.in);
size = sc.nextInt();
map = new char[size][size];
visit= new boolean[size][size];
for(int i=0; i<size; i++) {
for(int j=0; j<str.length; j++) {
map[i][j] = str[j];
}
}
System.out.print(BFS());
for(int y = 0 ; y < size ; y ++) {
for(int x =0; x < size ; x ++) {
if(map[y][x]== 'R') {
map[y][x] = 'G';
}
visit[y][x] = false;
}
}
System.out.println(" " + BFS());
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 6603 ) 로또 JAVA (0) | 2020.01.23 |
---|---|
BOJ - 7569 ) 토마토 (0) | 2020.01.22 |
BOJ -1697 ) 숨바꼭질 (0) | 2020.01.19 |
BOJ - 7576 ) 토마토 (0) | 2020.01.19 |
BOJ - 5427 ) 불 (0) | 2020.01.17 |
Comments