[BOJ] 1012. 有機白菜
https://www.acmicpc.net/problem/1012
DFSとBFSの両方の方法を試した.
質問する
DFSとBFSの両方の方法を試した.
質問する
次世代農業従事者のハンナは、江原道高寒(カンウォンド・コ寒)地域で有機白菜を栽培することにした.白菜を農薬で栽培しなければ害虫から白菜を守ることが重要なので、ハンナは害虫防止に有効な白菜ミミズを購入することにした.このミミズは白菜の近くに生息し、害虫を捕食することで白菜を保護する.特に、ある白菜に白いミミズが住んでいれば、このミミズは隣の他の白菜に移動することができ、これらの白菜も害虫の保護を受けることができる.1本の白菜の上下左右4方向に異なる白菜がある場合は隣接しています.
ハンナが白菜を植える畑は平らではなく,白菜を植える場所はみなそろっている.白菜が集まっているところに白菜のミミズが1匹あればいいので、隣接する白菜がいくつか分布しているかを調べてみると、全部で何匹必要かがわかります.例えば、白菜畑が以下のように構成されている場合、白菜ミミズは少なくとも5匹必要である.0は白菜を植えていない土地を表し、1は白菜を植えた土地を表す.
1 1 0 0 0 0 0 0 0 0
0 1 0 0 0 0 0 0 0 0
0 0 0 0 1 0 0 0 0 0
0 0 0 0 1 0 0 0 0 0
0 0 1 1 0 0 0 1 1 1
0 0 0 0 1 0 0 1 1 1
入力
入力された第1行は、試験例の個数Tを与える.次の行から、各試験例について、第1行は、キャベツ栽培地の横長M(1≦M≦50)および縦長N(1≦N≦50)およびキャベツ栽培場所の個数K(1≦K≦2500)を与えた.次いでK行はハクサイの位置X(0≦X≦M−1),Y(0≦Y≦N−1)を与える.2つの白菜が同じ位置にある場合はありません.
しゅつりょく
各試験箱について、所望の最小白菜白ミミズ数を出力する.
に答える import java.io.*;
import java.util.*;
public class Main {
static int n, m;
static int[][] map;
static boolean[][] visited;
static int[][] dir = {{1,0}, {-1,0}, {0,1}, {0,-1}};
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int t = Integer.parseInt(br.readLine());
while (t-- > 0) {
StringTokenizer st = new StringTokenizer(br.readLine());
m = Integer.parseInt(st.nextToken());
n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
map = new int[m][n];
visited = new boolean[m][n];
while (k-- > 0) {
st = new StringTokenizer(br.readLine());
int row = Integer.parseInt(st.nextToken());
int col = Integer.parseInt(st.nextToken());
map[row][col] = 1;
}
int ans = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (map[i][j] == 1 && !visited[i][j]) {
dfs(i, j);
ans++;
}
}
}
sb.append(ans).append("\n");
}
System.out.println(sb);
}
static void dfs(int row, int col) {
visited[row][col] = true;
for (int i = 0; i < 4; i++) {
int nr = row + dir[i][0];
int nc = col + dir[i][1];
if (nr < 0 || nc < 0 || nr >= m || nc >= n) continue;
if (map[nr][nc] == 0) continue;
if (visited[nr][nc]) continue;
dfs(nr, nc);
}
}
static void bfs(int row, int col) {
Queue<int[]> q = new LinkedList<>();
q.add(new int[] {row, col});
visited[row][col] = true;
while (!q.isEmpty()) {
int[] now = q.poll();
int r = now[0];
int c = now[1];
for (int i = 0; i < 4; i++) {
int nr = r + dir[i][0];
int nc = c + dir[i][1];
if (nr < 0 || nc < 0 || nr >= m || nc >= n) continue;
if (map[nr][nc] == 0) continue;
if (visited[nr][nc]) continue;
q.add(new int[] {nr, nc});
visited[nr][nc] = true;
}
}
}
}
Reference
この問題について([BOJ] 1012. 有機白菜), 我々は、より多くの情報をここで見つけました
https://velog.io/@yoon_0/BOJ-1012.-유기농-배추
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
入力された第1行は、試験例の個数Tを与える.次の行から、各試験例について、第1行は、キャベツ栽培地の横長M(1≦M≦50)および縦長N(1≦N≦50)およびキャベツ栽培場所の個数K(1≦K≦2500)を与えた.次いでK行はハクサイの位置X(0≦X≦M−1),Y(0≦Y≦N−1)を与える.2つの白菜が同じ位置にある場合はありません.
しゅつりょく
各試験箱について、所望の最小白菜白ミミズ数を出力する.
に答える import java.io.*;
import java.util.*;
public class Main {
static int n, m;
static int[][] map;
static boolean[][] visited;
static int[][] dir = {{1,0}, {-1,0}, {0,1}, {0,-1}};
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int t = Integer.parseInt(br.readLine());
while (t-- > 0) {
StringTokenizer st = new StringTokenizer(br.readLine());
m = Integer.parseInt(st.nextToken());
n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
map = new int[m][n];
visited = new boolean[m][n];
while (k-- > 0) {
st = new StringTokenizer(br.readLine());
int row = Integer.parseInt(st.nextToken());
int col = Integer.parseInt(st.nextToken());
map[row][col] = 1;
}
int ans = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (map[i][j] == 1 && !visited[i][j]) {
dfs(i, j);
ans++;
}
}
}
sb.append(ans).append("\n");
}
System.out.println(sb);
}
static void dfs(int row, int col) {
visited[row][col] = true;
for (int i = 0; i < 4; i++) {
int nr = row + dir[i][0];
int nc = col + dir[i][1];
if (nr < 0 || nc < 0 || nr >= m || nc >= n) continue;
if (map[nr][nc] == 0) continue;
if (visited[nr][nc]) continue;
dfs(nr, nc);
}
}
static void bfs(int row, int col) {
Queue<int[]> q = new LinkedList<>();
q.add(new int[] {row, col});
visited[row][col] = true;
while (!q.isEmpty()) {
int[] now = q.poll();
int r = now[0];
int c = now[1];
for (int i = 0; i < 4; i++) {
int nr = r + dir[i][0];
int nc = c + dir[i][1];
if (nr < 0 || nc < 0 || nr >= m || nc >= n) continue;
if (map[nr][nc] == 0) continue;
if (visited[nr][nc]) continue;
q.add(new int[] {nr, nc});
visited[nr][nc] = true;
}
}
}
}
Reference
この問題について([BOJ] 1012. 有機白菜), 我々は、より多くの情報をここで見つけました
https://velog.io/@yoon_0/BOJ-1012.-유기농-배추
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
import java.io.*;
import java.util.*;
public class Main {
static int n, m;
static int[][] map;
static boolean[][] visited;
static int[][] dir = {{1,0}, {-1,0}, {0,1}, {0,-1}};
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int t = Integer.parseInt(br.readLine());
while (t-- > 0) {
StringTokenizer st = new StringTokenizer(br.readLine());
m = Integer.parseInt(st.nextToken());
n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
map = new int[m][n];
visited = new boolean[m][n];
while (k-- > 0) {
st = new StringTokenizer(br.readLine());
int row = Integer.parseInt(st.nextToken());
int col = Integer.parseInt(st.nextToken());
map[row][col] = 1;
}
int ans = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (map[i][j] == 1 && !visited[i][j]) {
dfs(i, j);
ans++;
}
}
}
sb.append(ans).append("\n");
}
System.out.println(sb);
}
static void dfs(int row, int col) {
visited[row][col] = true;
for (int i = 0; i < 4; i++) {
int nr = row + dir[i][0];
int nc = col + dir[i][1];
if (nr < 0 || nc < 0 || nr >= m || nc >= n) continue;
if (map[nr][nc] == 0) continue;
if (visited[nr][nc]) continue;
dfs(nr, nc);
}
}
static void bfs(int row, int col) {
Queue<int[]> q = new LinkedList<>();
q.add(new int[] {row, col});
visited[row][col] = true;
while (!q.isEmpty()) {
int[] now = q.poll();
int r = now[0];
int c = now[1];
for (int i = 0; i < 4; i++) {
int nr = r + dir[i][0];
int nc = c + dir[i][1];
if (nr < 0 || nc < 0 || nr >= m || nc >= n) continue;
if (map[nr][nc] == 0) continue;
if (visited[nr][nc]) continue;
q.add(new int[] {nr, nc});
visited[nr][nc] = true;
}
}
}
}
Reference
この問題について([BOJ] 1012. 有機白菜), 我々は、より多くの情報をここで見つけました https://velog.io/@yoon_0/BOJ-1012.-유기농-배추テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol