結果

問題 No.697 池の数はいくつか
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-24 19:52:54
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,827 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 247,016 KB
最終ジャッジ日時 2024-11-25 15:03:20
合計ジャッジ時間 41,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 101 ms
41,256 KB
testcase_09 AC 111 ms
41,224 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 102 ms
40,116 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 117 ms
41,292 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static int[] par;
  static int[] rank;
  static int[][] a;
  static int h;
  static int w;
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    h = sc.nextInt();
    w = sc.nextInt();
    par = new int[h * w];
    rank = new int[h * w];
    a = new int[h][w];
    init(h * w);
    for(int i = 0; i < h; i++) {
      for(int j = 0; j < w; j++) {
        a[i][j] = sc.nextInt();
      }
    }
    for(int i = 0; i < h; i++) {
      for(int j = 0; j < w; j++) {
        if(a[i][j] == 1) {
          if((i - 1) >= 0) unite((i * w + j), ((i - 1) * w + j));
          if((i + 1) < h) unite((i * w + j), ((i + 1) * w + j));
          if((j - 1) >= 0) unite((i * w + j), (i * w + j - 1));
          if((j + 1) < w) unite((i * w + j), (i * w + j + 1));
        }
      }
    }
    HashSet<Integer> set = new HashSet<Integer>();
    for(int i = 0; i < (h * w); i++) {
      int i1 = i / w;
      int j1 = i - w * i1;
      if(a[i1][j1] == 1) set.add(find(i));
    }
    System.out.println(set.size());
  }
  static void init(int m) {
      for(int i = 0; i < m; i++) {
        par[i] = i;
        rank[i] = 0;
      }
    }
  static int find(int x) {
      if(par[x] == x) {
        return x;
      } else {
        return par[x] = find(par[x]);
      }
    }
  static void unite(int x, int y) {
      int i1 = x / w;
      int j1 = x - i1 * w;
      int i2 = y / w;
      int j2 = y - i1 * w;
      if(a[i1][j1] == a[i2][j2]) {
      x = find(x);
      y = find(y);
      if(x != y) {
        if(rank[x] < rank[y]) {
          par[x] = y;
        } else {
          par[y] = x;
          if(rank[x] == rank[y]) {
            rank[x]++;
          }
        }
      }
      }
    }
  static boolean same(int x, int y) {
      return find(x) == find(y);
    }
}
0