結果

問題 No.2238 Rock and Hole
ユーザー 沙耶花沙耶花
提出日時 2023-03-03 22:01:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 3,000 ms
コード長 1,096 bytes
コンパイル時間 4,940 ms
コンパイル使用メモリ 270,632 KB
実行使用メモリ 17,400 KB
最終ジャッジ日時 2024-09-17 22:58:38
合計ジャッジ時間 5,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,812 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 12 ms
8,868 KB
testcase_12 AC 12 ms
9,276 KB
testcase_13 AC 10 ms
8,828 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 51 ms
17,400 KB
testcase_17 AC 33 ms
16,948 KB
testcase_18 AC 16 ms
11,652 KB
testcase_19 AC 38 ms
8,952 KB
testcase_20 AC 21 ms
9,740 KB
testcase_21 AC 23 ms
9,424 KB
testcase_22 AC 14 ms
7,844 KB
testcase_23 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	
	int h,w;
	cin>>h>>w;
	
	vector<string> s(h);
	rep(i,h)cin>>s[i];
	
	vector<pair<int,int>> rs,hs;
	rep(i,h){
		rep(j,w){
			if(s[i][j]=='h')hs.emplace_back(i,j);
			if(s[i][j]=='r')rs.emplace_back(i,j);
		}
	}
	
	int x = rs.size();
	int y = hs.size();
	mf_graph<int> G(x + y + 2);
	vector<int> dx = {1,-1,0,0},dy = {0,0,1,-1};
	int S = x + y;
	int T = S + 1;
	rep(i,x){
		G.add_edge(S,i,1);
		rep(j,4){
			int xx = rs[i].first,yy = rs[i].second;
			while(true){
				xx += dx[j];
				yy += dy[j];
				if(xx<0||xx>=h||yy<0||yy>=w)break;
				if(s[xx][yy]=='h'){
					int ii = distance(hs.begin(),lower_bound(hs.begin(),hs.end(),make_pair(xx,yy)));
					G.add_edge(i,x + ii,1);
					break;
				}
			}
		}
	}
	
	rep(i,y){
		G.add_edge(x + i,T,1);
		
	}
	
	if(G.flow(S,T)==x)cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
			
	
	return 0;
}
0