結果

問題 No.2456 Stamp Art
ユーザー kwm_tkwm_t
提出日時 2023-09-01 23:31:49
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 898 ms / 5,000 ms
コード長 2,299 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 209,816 KB
実行使用メモリ 38,964 KB
最終ジャッジ日時 2024-06-11 18:06:58
合計ジャッジ時間 16,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int h, w; cin >> h >> w;
	vector<string>s(h);
	rep(i, h)cin >> s[i];
	vector sc(h + 1, vector<int>(w + 1));
	rep(i, h)rep(j, w)if ('#' == s[i][j])sc[i + 1][j + 1]++;
	rep(i, h + 1)rep(j, w) sc[i][j + 1] += sc[i][j];
	rep(i, w + 1)rep(j, h) sc[j + 1][i] += sc[j][i];
	// 左上(x0,y0)右下(x1,y1)
	auto calc = [&](int x0, int y0, int x1, int y1)->long long {
		return  sc[x1 + 1][y1 + 1] - sc[x1 + 1][y0] - sc[x0][y1 + 1] + sc[x0][y0];
	};
	long long ng = max(h, w) + 1;
	long long ok = 1;
	while (1 < abs(ok - ng)) {
		long long mid = (ng + ok) / 2;
		//cout << mid << endl;
		vector imos(h + 1, vector<int>(w + 1));
		auto add = [&](int x0, int y0, int x1, int y1, int val)->void {
			imos[x0][y0] += val;
			imos[x0][y1] -= val;
			imos[x1][y0] -= val;
			imos[x1][y1] += val;
		};
		auto check = [&]() {
			rep(i, h - mid + 1)rep(j, w - mid + 1) {
				int cnt = calc(i, j, i + mid - 1, j + mid - 1);
				//cout << cnt << endl;
				if (cnt != mid * mid)continue;
				add(i, j, i + mid, j + mid, 1);
			}
			rep(i, h + 1) rep(j, w) imos[i][j + 1] += imos[i][j];
			rep(i, w + 1) rep(j, h) imos[j + 1][i] += imos[j][i];
			bool chk = true;
			rep(i, h)rep(j, w)if ('#' == s[i][j] && 0 == imos[i][j])chk = false;
			/*rep(i, h) {
				rep(j, w) {
					cout << imos[i][j];
				}
				cout << endl;
			}*/
			return chk;
		};
		if (check()) ok = mid;
		else ng = mid;
	}
	cout << ok << endl;
	return 0;
}
0