結果

問題 No.697 池の数はいくつか
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-24 19:56:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 5,735 ms / 6,000 ms
コード長 1,827 bytes
コンパイル時間 2,665 ms
コンパイル使用メモリ 77,860 KB
実行使用メモリ 262,532 KB
最終ジャッジ日時 2024-11-25 15:06:37
合計ジャッジ時間 47,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,016 KB
testcase_01 AC 116 ms
53,712 KB
testcase_02 AC 121 ms
53,800 KB
testcase_03 AC 114 ms
53,744 KB
testcase_04 AC 124 ms
53,960 KB
testcase_05 AC 120 ms
54,132 KB
testcase_06 AC 124 ms
54,052 KB
testcase_07 AC 120 ms
54,100 KB
testcase_08 AC 120 ms
54,116 KB
testcase_09 AC 116 ms
53,688 KB
testcase_10 AC 122 ms
53,884 KB
testcase_11 AC 112 ms
54,160 KB
testcase_12 AC 116 ms
53,848 KB
testcase_13 AC 128 ms
54,180 KB
testcase_14 AC 127 ms
54,104 KB
testcase_15 AC 119 ms
54,016 KB
testcase_16 AC 112 ms
53,596 KB
testcase_17 AC 119 ms
53,836 KB
testcase_18 AC 123 ms
54,272 KB
testcase_19 AC 109 ms
53,008 KB
testcase_20 AC 121 ms
53,920 KB
testcase_21 AC 118 ms
53,848 KB
testcase_22 AC 117 ms
54,064 KB
testcase_23 AC 125 ms
53,744 KB
testcase_24 AC 1,310 ms
87,772 KB
testcase_25 AC 1,259 ms
85,996 KB
testcase_26 AC 1,320 ms
86,268 KB
testcase_27 AC 1,295 ms
85,568 KB
testcase_28 AC 1,301 ms
85,400 KB
testcase_29 AC 5,656 ms
248,508 KB
testcase_30 AC 5,715 ms
259,604 KB
testcase_31 AC 5,569 ms
248,548 KB
testcase_32 AC 5,675 ms
260,016 KB
testcase_33 AC 5,622 ms
261,740 KB
testcase_34 AC 5,735 ms
262,532 KB
権限があれば一括ダウンロードができます

ソースコード

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 - i2 * 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