結果

問題 No.697 池の数はいくつか
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-20 21:23:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 5,728 ms / 6,000 ms
コード長 1,679 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 78,172 KB
実行使用メモリ 259,840 KB
最終ジャッジ日時 2024-11-25 15:09:16
合計ジャッジ時間 47,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,856 KB
testcase_01 AC 103 ms
53,100 KB
testcase_02 AC 112 ms
53,808 KB
testcase_03 AC 104 ms
52,620 KB
testcase_04 AC 129 ms
53,904 KB
testcase_05 AC 132 ms
53,708 KB
testcase_06 AC 120 ms
53,012 KB
testcase_07 AC 127 ms
54,088 KB
testcase_08 AC 134 ms
54,040 KB
testcase_09 AC 122 ms
53,828 KB
testcase_10 AC 129 ms
53,752 KB
testcase_11 AC 123 ms
53,712 KB
testcase_12 AC 120 ms
53,660 KB
testcase_13 AC 127 ms
53,936 KB
testcase_14 AC 121 ms
53,748 KB
testcase_15 AC 125 ms
53,720 KB
testcase_16 AC 111 ms
52,552 KB
testcase_17 AC 109 ms
53,016 KB
testcase_18 AC 121 ms
53,824 KB
testcase_19 AC 109 ms
52,612 KB
testcase_20 AC 117 ms
53,136 KB
testcase_21 AC 125 ms
54,160 KB
testcase_22 AC 112 ms
52,596 KB
testcase_23 AC 122 ms
53,796 KB
testcase_24 AC 1,237 ms
87,196 KB
testcase_25 AC 1,242 ms
87,512 KB
testcase_26 AC 1,263 ms
87,168 KB
testcase_27 AC 1,240 ms
86,936 KB
testcase_28 AC 1,265 ms
87,248 KB
testcase_29 AC 5,287 ms
248,472 KB
testcase_30 AC 5,696 ms
257,020 KB
testcase_31 AC 5,586 ms
248,208 KB
testcase_32 AC 5,650 ms
258,812 KB
testcase_33 AC 5,728 ms
259,840 KB
testcase_34 AC 5,691 ms
259,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static int[] par;
  static int[] rank;
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int h = sc.nextInt();
    int w = sc.nextInt();
    int n = h * w;
    par = new int[n];
    rank = new int[n];
    init(n);

    int[][] a = new int[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) {
          int p = i * w + j;
          if((i > 0) && (a[i - 1][j] == 1)) unite(p, p - w);
          if((i < h - 1) && (a[i + 1][j] == 1)) unite(p, p + w);
          if((j > 0) && (a[i][j - 1] == 1)) unite(p, p - 1);
          if((j < w - 1) && (a[i][j + 1] == 1)) unite(p, p + 1);
        }
      }
    }

    HashSet<Integer> set = new HashSet<Integer>();

    for(int i = 0; i < h; i++) {
      for(int j = 0; j < w; j++) {
        if(a[i][j] == 1) {
          set.add(find(i * w + j));
        }
      }
    }

    System.out.println(set.size());
  }
  static void init(int m) {
      for(int i = 0; i < m; i++) {
        par[i] = i;
        rank[i] = 1;
      }
    }
  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) {
      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