結果
| 問題 |
No.697 池の数はいくつか
|
| ユーザー |
tenten
|
| 提出日時 | 2020-12-04 13:46:00 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 5,470 ms / 6,000 ms |
| コード長 | 1,344 bytes |
| コンパイル時間 | 2,284 ms |
| コンパイル使用メモリ | 78,148 KB |
| 実行使用メモリ | 70,336 KB |
| 最終ジャッジ日時 | 2024-11-08 08:49:40 |
| 合計ジャッジ時間 | 46,400 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int h = sc.nextInt();
int w = sc.nextInt();
boolean[][] field = new boolean[h + 2][w + 2];
for (int i = 1; i <= h; i++) {
for (int j = 1; j <= w; j++) {
field[i][j] = (sc.nextInt() == 1);
}
}
ArrayDeque<Integer> deq = new ArrayDeque<>();
int count = 0;
for (int i = 1; i <= h; i++) {
for (int j = 1; j <= w; j++) {
if (field[i][j]) {
count++;
deq.add(i * (w + 2) + j);
while (deq.size() > 0) {
int x = deq.poll();
int xh = x / (w + 2);
int xw = x % (w + 2);
if (!field[xh][xw]) {
continue;
}
field[xh][xw] = false;
deq.add(xh * (w + 2) + xw + 1);
deq.add(xh * (w + 2) + xw - 1);
deq.add((xh + 1) * (w + 2) + xw);
deq.add((xh - 1) * (w + 2) + xw);
}
}
}
}
System.out.println(count);
}
}
tenten