結果

問題 No.697 池の数はいくつか
ユーザー cielciel
提出日時 2018-06-09 20:33:04
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 542 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 05:33:33
合計ジャッジ時間 6,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#define add(x,y) if(0<=x&&x<n&&0<=y&&y<m&&T[y][x])T[y][x]=0,q[qe]=(x)*10000+(y),qe=(qe+1)%100000;

int T[1001][1001],n,m;
void fill(int x,int y){
	int q[100000];
	int qs=0,qe=0;
	add(x,y);
	for(;qs!=qe;){
		int cur=q[qs];qs=(qs+1)%100000;
		int x=cur/10000,y=cur%10000;
		add(x-1,y);
		add(x+1,y);
		add(x,y-1);
		add(x,y+1);
	}
}
int main(){
	int i,j,r=0;
	scanf("%d%d",&m,&n);
	for(i=0;i<m;i++)for(j=0;j<n;j++)scanf("%d",T[i]+j);
	for(i=0;i<m;i++)for(j=0;j<n;j++)if(T[i][j])r++,fill(j,i);
	printf("%d\n",r);
	return 0;
}
0