結果

問題 No.697 池の数はいくつか
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-23 03:38:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 5,889 ms / 6,000 ms
コード長 1,517 bytes
コンパイル時間 4,422 ms
コンパイル使用メモリ 78,132 KB
実行使用メモリ 173,488 KB
最終ジャッジ日時 2024-09-27 15:08:32
合計ジャッジ時間 52,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,128 KB
testcase_01 AC 126 ms
53,872 KB
testcase_02 AC 115 ms
53,060 KB
testcase_03 AC 127 ms
54,120 KB
testcase_04 AC 131 ms
53,984 KB
testcase_05 AC 126 ms
54,192 KB
testcase_06 AC 116 ms
52,708 KB
testcase_07 AC 126 ms
54,060 KB
testcase_08 AC 128 ms
54,080 KB
testcase_09 AC 126 ms
53,788 KB
testcase_10 AC 132 ms
53,796 KB
testcase_11 AC 128 ms
54,020 KB
testcase_12 AC 125 ms
54,036 KB
testcase_13 AC 132 ms
54,084 KB
testcase_14 AC 132 ms
54,088 KB
testcase_15 AC 129 ms
54,240 KB
testcase_16 AC 127 ms
53,988 KB
testcase_17 AC 126 ms
54,056 KB
testcase_18 AC 117 ms
53,004 KB
testcase_19 AC 130 ms
54,008 KB
testcase_20 AC 132 ms
54,256 KB
testcase_21 AC 130 ms
54,140 KB
testcase_22 AC 128 ms
54,016 KB
testcase_23 AC 132 ms
54,124 KB
testcase_24 AC 1,339 ms
76,136 KB
testcase_25 AC 1,321 ms
76,044 KB
testcase_26 AC 1,331 ms
76,004 KB
testcase_27 AC 1,342 ms
76,240 KB
testcase_28 AC 1,298 ms
76,000 KB
testcase_29 AC 5,709 ms
173,364 KB
testcase_30 AC 5,889 ms
173,280 KB
testcase_31 AC 5,780 ms
173,336 KB
testcase_32 AC 5,603 ms
173,104 KB
testcase_33 AC 5,618 ms
173,456 KB
testcase_34 AC 5,564 ms
173,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No697{
	public static void main(String[] args){
		run();
	}

	static class DJSet{
		int n;
		int[] upper;

		public DJSet(int n_) {
			n = n_;
			upper = new int[n];
			Arrays.fill(upper, -1);
		}

		int root(int x) {
			return upper[x] < 0 ? x : (upper[x] = root(upper[x]));
		}

		boolean equiv(int x, int y) {
			return root(x) == root(y);
		}

		void setUnion(int x, int y) {
			x = root(x);
			y = root(y);
			if (x == y)
				return;
			if (upper[x] > upper[y]) {
				x ^= y;
				y ^= x;
				x ^= y;
			}
			upper[x] += upper[y];
			upper[y] = x;
		}
	}

	static void run(){
		Scanner sc = new Scanner(System.in);
		int H = sc.nextInt();
		int W = sc.nextInt();
		DJSet ds = new DJSet(H * W);
		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)
					continue;
				for (int di = -1; di <= 1; ++di) {
					for (int dj = -1; dj <= 1; ++dj) {
						if (Math.abs(di) + Math.abs(dj) != 1)
							continue;
						int ni = i + di;
						int nj = j + dj;
						if (ni < 0 || nj < 0 || ni >= H || nj >= W)
							continue;
						if (A[ni][nj] != 1)
							continue;
						ds.setUnion(i * W + j, ni * W + nj);
					}
				}
			}
		}
		int cnt = 0;
		for (int i = 0; i < H; ++i) {
			for (int j = 0; j < W; ++j) {
				if (A[i][j] == 1 && i * W + j == ds.root(i * W + j))
					++cnt;
			}
		}
		System.out.println(cnt);
	}
}

0