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
- 공부정리
- heap
- Java heap
- 백준 1000번 java
- 자바문자열
- 객체프로그래밍
- 자바
- 프렌즈4블록
- 코테준비
- 개발상식
- 카카오기출
- 백준
- 자료구조힙
- 문자열포맷
- java
- 프로그래머스
- 카카오코딩테스트
- 백준 1000번
- heap정렬
- 백준 1924번
- 객체프로그래밍이란
- java method
- 백준 1924번 java
- 자료구조 트리
- 프렌즈4블록java
- 카카오코테
- 카카오1차
- 힙정렬자바
- 코딩테스트기출
- 알고리즘
Archives
- Today
- Total
일단 시작해보는 블로그
[알고리즘_풀이] 카카오 예선, 카카오프렌즈 컬러링북 본문
java, bfs로 구현한 코드
전형적인 graph응용문제였고 이에 따라 graph에 대하여 전반적으로 공부했다.
IDE용 코드
package codingTest;
import java.util.*;
class Node{
int x;
int y;
Node(int x, int y){
this.x = x;
this.y = y;
}
}
public class kakao_coloringbook {
static boolean[][] marked = null;
static int[][] pictures = null;
public static int bfs(int i, int j) {
//System.out.println(marked[i][j]);
int tmpPicture = pictures[i][j];
System.out.println(pictures[i][j] + " " + i + " " + j );
marked[i][j] = true;
Queue<Node> q = new LinkedList<>();
q.add(new Node(i, j));
int[] dx = {0, 0, 1, -1};
int[] dy = {1, -1, 0, 0};
int count = 1;
while(!q.isEmpty()){
Node out = q.poll();
for(int k=0; k<4; k++){
int x = out.x+dx[k];
int y = out.y+dy[k];
if(x>=0 && y>=0 && x<pictures.length && y<pictures[0].length){
if(!marked[x][y] && pictures[x][y] == tmpPicture && pictures[i][j] > 0){
count++;
marked[x][y] = true;
q.add(new Node(x, y));
}
}
}
}
return count;
}
public static int[] solution(int m, int n, int[][] picture) {
int numberOfArea = 0;
int maxSizeOfOneArea = 0;
marked = new boolean[m][n];
pictures = new int[m][n];
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
pictures[i][j] = picture[i][j];
}
}
List<Integer> count = new LinkedList<>();
//bfs구현
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
if(!marked[i][j] && pictures[i][j] > 0){
marked[i][j] = true;
count.add(bfs(i, j));
}
}
}
Collections.sort(count);
Collections.reverse(count);
numberOfArea = count.size();
maxSizeOfOneArea = count.get(0);
int[] answer = new int[2];
answer[0] = numberOfArea;
answer[1] = maxSizeOfOneArea;
return answer;
}
public static void main(String[] args) {
int m = 6;
int n = 4;
int[][] picture = {{1, 1, 1, 0}, {1, 2, 2, 0}, {1, 0, 0, 1}, {0, 0, 0, 1}, {0, 0, 0, 3}, {0, 0, 0, 3}};
int[] answer = solution(m, n, picture);
System.out.println(answer[0] + " " + answer[1]);
}
}
프로그래머스용 코드
import java.util.*;
class Node{
int x;
int y;
Node(int x, int y){
this.x = x;
this.y = y;
}
}
class Solution {
static boolean[][] marked = null;
static int[][] pictures = null;
public static int bfs(int i, int j) {
//System.out.println(marked[i][j]);
int tmpPicture = pictures[i][j];
System.out.println(pictures[i][j] + " " + i + " " + j );
marked[i][j] = true;
Queue<Node> q = new LinkedList<>();
q.add(new Node(i, j));
int[] dx = {0, 0, 1, -1};
int[] dy = {1, -1, 0, 0};
int count = 1;
while(!q.isEmpty()){
Node out = q.poll();
for(int k=0; k<4; k++){
int x = out.x+dx[k];
int y = out.y+dy[k];
if(x>=0 && y>=0 && x<pictures.length && y<pictures[0].length){
if(!marked[x][y] && pictures[x][y] == tmpPicture && pictures[i][j] > 0){
count++;
marked[x][y] = true;
q.add(new Node(x, y));
}
}
}
}
return count;
}
public int[] solution(int m, int n, int[][] picture) {
int numberOfArea = 0;
int maxSizeOfOneArea = 0;
marked = new boolean[m][n];
pictures = new int[m][n];
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
pictures[i][j] = picture[i][j];
}
}
List<Integer> count = new LinkedList<>();
//bfs구현
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
if(!marked[i][j] && pictures[i][j] > 0){
marked[i][j] = true;
count.add(bfs(i, j));
}
}
}
System.out.println("count : " + count);
Collections.sort(count);
Collections.reverse(count);
numberOfArea = count.size();
maxSizeOfOneArea = count.get(0);
int[] answer = new int[2];
answer[0] = numberOfArea;
answer[1] = maxSizeOfOneArea;
return answer;
}
}
https://programmers.co.kr/learn/courses/30/lessons/1829
'CS > 알고리즘 풀이' 카테고리의 다른 글
[알고리즘_풀이] 카카오코딩테스트, 셔틀버스 (java) (1) | 2019.08.28 |
---|---|
[알고리즘_풀이] 카카오코딩테스트, 프렌즈 4블록(java) (0) | 2019.08.28 |
[알고리즘_풀이] 백준 11724, 연결 요소의 개수 (0) | 2019.08.27 |
[알고리즘 풀이] 카카오 코테 기출, 다트 게임 (0) | 2019.08.24 |
[알고리즘_문자열] 문자열 뒤집기 (0) | 2019.08.24 |
Comments