結果

問題 No.697 池の数はいくつか
ユーザー chocoruskchocorusk
提出日時 2020-10-04 01:03:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,395 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 111,244 KB
最終ジャッジ日時 2023-08-16 23:45:54
合計ジャッジ時間 31,317 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		String[] hw=scanner.nextLine().split(" ");
		int h=Integer.parseInt(hw[0]);
		int w=Integer.parseInt(hw[1]);
		boolean[][] a=new boolean[h][w];
		int cnt=0;
		for(int i=0; i<h; i++) {
			for(int j=0; j<w; j++) {
				a[i][j]=Boolean.parseBoolean(scanner.next());
				if(a[i][j]) cnt++;
			}
		}
		UnionFind uf=new UnionFind(h*w);
		for(int i=0; i<h; i++) {
			for(int j=0; j<w; j++) {
				if(!a[i][j]) continue;
				int x=i*w+j;
				if(i+1<h && a[i+1][j]) {
					if(uf.unite(x, (i+1)*w+j)) cnt--;
				}
				if(j+1<w && a[i][j+1]) {
					if(uf.unite(x,  i*w+j+1)) cnt--;
				}
			}
		}
		out.println(cnt);
		out.close();
		scanner.close();
	}
}
class UnionFind{
	int n;
	int[] par;
	int cmp;
	public UnionFind(int n) {
		this.n=n;
		this.par=new int[n];
		Arrays.fill(this.par, -1);
		this.cmp=n;
	}
	public int find(int x) {
		if(par[x]<0) return x;
		return par[x]=find(par[x]);
	}
	public boolean unite(int x, int y) {
		x=find(x);
		y=find(y);
		if(x==y) {
			return false;
		}
		cmp--;
		if(par[x]>par[y]) {
			int tmp=x;
			x=y;
			y=tmp;
		}
		par[x]+=par[y];
		par[y]=x;
		return true;
	}
	public boolean same(int x, int y) {
		return find(x)==find(y);
	}
}
0