結果

問題 No.2696 Sign Creation
ユーザー shobonvipshobonvip
提出日時 2024-03-23 04:27:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,672 ms / 2,500 ms
コード長 3,185 bytes
コンパイル時間 3,807 ms
コンパイル使用メモリ 274,028 KB
実行使用メモリ 12,860 KB
最終ジャッジ日時 2024-05-17 18:22:31
合計ジャッジ時間 9,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 575 ms
6,940 KB
testcase_14 AC 189 ms
6,940 KB
testcase_15 AC 178 ms
6,944 KB
testcase_16 AC 557 ms
6,940 KB
testcase_17 AC 51 ms
6,944 KB
testcase_18 AC 74 ms
6,940 KB
testcase_19 AC 205 ms
6,940 KB
testcase_20 AC 8 ms
6,948 KB
testcase_21 AC 139 ms
7,768 KB
testcase_22 AC 146 ms
6,940 KB
testcase_23 AC 162 ms
6,940 KB
testcase_24 AC 162 ms
6,940 KB
testcase_25 AC 265 ms
6,940 KB
testcase_26 AC 91 ms
6,940 KB
testcase_27 AC 130 ms
6,944 KB
testcase_28 AC 119 ms
6,940 KB
testcase_29 AC 77 ms
6,944 KB
testcase_30 AC 80 ms
6,944 KB
testcase_31 AC 1,672 ms
12,860 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 1 ms
6,944 KB
testcase_40 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

struct UndoUnionFind{
	int n;
	vector<int> par;
	vector<pair<int,int>> history;

	explicit UndoUnionFind(int v): n(v), par(v,-1) {}

	void merge(int a, int b){
		int x = find(a);
		int y = find(b);
		history.push_back(pair(x, par[x]));
		history.push_back(pair(y, par[y]));
		if (x == y) return;
		if (-par[x] < -par[y]) swap(x, y);
		par[x] += par[y];
		par[y] = x;
		return;
	}

	int find(int x){
		if (par[x] < 0) return x;
		return find(par[x]);
	}

	void undo(){
		par[history.back().first] = history.back().second;
		history.pop_back();
		par[history.back().first] = history.back().second;
		history.pop_back();
		return;
	};
};

int main(){
	int h, w; cin >> h >> w;
	int n, d; cin >> n >> d;

	vector<int> x(n), y(n);
	rep(i,0,n) cin >> x[i] >> y[i];

	map<pair<int,int>,int> taio;
	rep(i,0,n){
		taio[pair(x[i], y[i])] = i;
	}

	UndoUnionFind uf(n+1);
	int val = 0;
	rep(i,0,n){
		rep(dx,-d,d+1){
			rep(dy,-d,d+1){
				if (abs(dx)+abs(dy)>d) continue;
				if (taio.find(pair(x[i]+dx,y[i]+dy)) == taio.end()){
					continue;
				}
				if (uf.find(taio[pair(x[i]+dx,y[i]+dy)]) != uf.find(i)){
					if (-uf.par[uf.find(taio[pair(x[i]+dx,y[i]+dy)])] >= 2){
						val--;
					}
					if (-uf.par[uf.find(i)] >= 2){
						val--;
					}
					uf.merge(taio[pair(x[i]+dx,y[i]+dy)], i);
					if(-uf.par[uf.find(i)]>=2){
						val++;
					}
				}
			}
		}
	}

	int mn = 1e9;
	int mx = -1;

	rep(i,1,h+1){
		rep(j,1,w+1){
			if (taio.find(pair(i,j)) != taio.end()){
				continue;
			}
			int cnt = 0;
			int orval = val;
			rep(dx,-d,d+1){
				rep(dy,-d,d+1){
					if (abs(dx)+abs(dy) > d) continue;
					if (taio.find(pair(i+dx, j+dy)) == taio.end()){
						continue;
					}
					if (uf.find(taio[pair(i+dx, j+dy)]) != uf.find(n)){
						if (-uf.par[uf.find(taio[pair(i+dx, j+dy)])] >= 2){
							val--;
						}
						if( -uf.par[uf.find(n)] >= 2){
							val--;
						}
						uf.merge(taio[pair(i+dx, j+dy)], n);
						
						if( -uf.par[uf.find(n)] >= 2){
							val++;
						}
						cnt++;
					}
				}
			}


			chmax(mx,val);
			chmin(mn,val);

			rep(num,0,cnt){
				uf.undo();
			}
			val = orval;
		}
	}
	cout << mn << ' ' << mx << '\n';
}

0