結果

問題 No.697 池の数はいくつか
ユーザー chocoruskchocorusk
提出日時 2020-10-04 00:57:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,148 ms / 6,000 ms
コード長 1,367 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 77,528 KB
実行使用メモリ 142,092 KB
最終ジャッジ日時 2024-11-08 08:47:26
合計ジャッジ時間 31,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,136 KB
testcase_01 AC 117 ms
41,240 KB
testcase_02 AC 117 ms
40,780 KB
testcase_03 AC 124 ms
41,092 KB
testcase_04 AC 113 ms
40,236 KB
testcase_05 AC 119 ms
41,180 KB
testcase_06 AC 120 ms
41,256 KB
testcase_07 AC 126 ms
41,304 KB
testcase_08 AC 126 ms
41,168 KB
testcase_09 AC 116 ms
39,784 KB
testcase_10 AC 130 ms
40,940 KB
testcase_11 AC 111 ms
40,072 KB
testcase_12 AC 126 ms
40,912 KB
testcase_13 AC 124 ms
41,168 KB
testcase_14 AC 121 ms
41,044 KB
testcase_15 AC 111 ms
40,704 KB
testcase_16 AC 118 ms
41,388 KB
testcase_17 AC 116 ms
41,180 KB
testcase_18 AC 118 ms
41,164 KB
testcase_19 AC 119 ms
41,172 KB
testcase_20 AC 120 ms
40,964 KB
testcase_21 AC 124 ms
41,116 KB
testcase_22 AC 125 ms
40,888 KB
testcase_23 AC 132 ms
40,968 KB
testcase_24 AC 1,014 ms
63,388 KB
testcase_25 AC 1,010 ms
63,500 KB
testcase_26 AC 993 ms
63,192 KB
testcase_27 AC 1,017 ms
63,404 KB
testcase_28 AC 992 ms
63,728 KB
testcase_29 AC 3,069 ms
142,092 KB
testcase_30 AC 3,114 ms
141,844 KB
testcase_31 AC 2,937 ms
142,056 KB
testcase_32 AC 3,110 ms
141,864 KB
testcase_33 AC 3,091 ms
141,984 KB
testcase_34 AC 3,148 ms
141,804 KB
権限があれば一括ダウンロードができます

ソースコード

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);
		int h=Integer.parseInt(scanner.next());
		int w=Integer.parseInt(scanner.next());
		int[][] a=new int[h][w];
		int cnt=0;
		for(int i=0; i<h; i++) {
			for(int j=0; j<w; j++) {
				a[i][j]=Integer.parseInt(scanner.next());
				if(a[i][j]==1) 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]==0) continue;
				int x=i*w+j;
				if(i+1<h && a[i+1][j]==1) {
					if(uf.unite(x, (i+1)*w+j)) cnt--;
				}
				if(j+1<w && a[i][j+1]==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