結果

問題 No.2238 Rock and Hole
ユーザー tailstails
提出日時 2023-03-03 22:29:43
言語 cLay
(20240714-1)
結果
AC  
実行時間 37 ms / 3,000 ms
コード長 770 bytes
コンパイル時間 4,103 ms
コンパイル使用メモリ 180,852 KB
実行使用メモリ 18,632 KB
最終ジャッジ日時 2024-09-17 23:30:39
合計ジャッジ時間 5,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
7,492 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 5 ms
8,000 KB
testcase_11 AC 17 ms
15,812 KB
testcase_12 AC 16 ms
15,304 KB
testcase_13 AC 16 ms
16,576 KB
testcase_14 AC 9 ms
10,436 KB
testcase_15 AC 5 ms
7,492 KB
testcase_16 AC 21 ms
18,504 KB
testcase_17 AC 26 ms
18,628 KB
testcase_18 AC 21 ms
18,632 KB
testcase_19 AC 25 ms
11,976 KB
testcase_20 AC 24 ms
11,264 KB
testcase_21 AC 37 ms
10,496 KB
testcase_22 AC 16 ms
12,616 KB
testcase_23 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h,@w,n=0;
string@s[h];
maxflow<int,int>f;
f.malloc(h*w+2,1);

rep(y,h){
	int r=-1;
	rep(x,w){
		int c=s[y][x];
		if(c=='h'){
			f.addEdge(h*w,y*w+x,1,0);
			r=x;
		}
		if(c=='r'){
			++n;
			f.addEdge(y*w+x,h*w+1,1,0);
			if(r>=0){
				f.addEdge(y*w+r,y*w+x,1,0);
			}
		}
	}
}

rep(y,h){
	int r=-1;
	rrep(x,w){
		int c=s[y][x];
		if(c=='h'){
			r=x;
		}
		if(c=='r'){
			if(r>=0){
				f.addEdge(y*w+r,y*w+x,1,0);
			}
		}
	}
}

rep(x,w){
	int r=-1;
	rep(y,h){
		int c=s[y][x];
		if(c=='h'){
			r=y;
		}
		if(c=='r'){
			if(r>=0){
				f.addEdge(r*w+x,y*w+x,1,0);
			}
		}
	}
}

rep(x,w){
	int r=-1;
	rrep(y,h){
		int c=s[y][x];
		if(c=='h'){
			r=y;
		}
		if(c=='r'){
			if(r>=0){
				f.addEdge(r*w+x,y*w+x,1,0);
			}
		}
	}
}

wt(f.solve(h*w,h*w+1)==n?"Yes":"No");

0