結果
問題 | No.2696 Sign Creation |
ユーザー | shobonvip |
提出日時 | 2024-03-23 04:32:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 188 ms / 2,500 ms |
コード長 | 3,252 bytes |
コンパイル時間 | 4,335 ms |
コンパイル使用メモリ | 267,384 KB |
実行使用メモリ | 7,140 KB |
最終ジャッジ日時 | 2024-05-17 18:22:31 |
合計ジャッジ時間 | 6,508 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | AC | 123 ms
6,940 KB |
testcase_14 | AC | 40 ms
6,944 KB |
testcase_15 | AC | 38 ms
6,944 KB |
testcase_16 | AC | 111 ms
6,940 KB |
testcase_17 | AC | 33 ms
6,940 KB |
testcase_18 | AC | 19 ms
6,940 KB |
testcase_19 | AC | 47 ms
6,940 KB |
testcase_20 | AC | 5 ms
6,944 KB |
testcase_21 | AC | 32 ms
6,940 KB |
testcase_22 | AC | 40 ms
6,944 KB |
testcase_23 | AC | 35 ms
6,940 KB |
testcase_24 | AC | 35 ms
6,940 KB |
testcase_25 | AC | 62 ms
6,940 KB |
testcase_26 | AC | 35 ms
6,940 KB |
testcase_27 | AC | 40 ms
6,944 KB |
testcase_28 | AC | 29 ms
6,940 KB |
testcase_29 | AC | 36 ms
6,944 KB |
testcase_30 | AC | 36 ms
6,944 KB |
testcase_31 | AC | 188 ms
7,140 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 | 2 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | AC | 2 ms
6,944 KB |
testcase_38 | AC | 2 ms
6,940 KB |
testcase_39 | AC | 2 ms
6,940 KB |
testcase_40 | AC | 2 ms
6,940 KB |
ソースコード
#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]; vector taio(h+1, vector<int>(w+1, -1)); auto exist = [&](int i, int j) -> int { if (! (0 <= i && i <= h)) return -1; if (! (0 <= j && j <= w)) return -1; return taio[i][j]; }; rep(i,0,n){ taio[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 (exist(x[i]+dx,y[i]+dy)==-1){ continue; } if (uf.find(exist(x[i]+dx,y[i]+dy)) != uf.find(i)){ if (-uf.par[uf.find(exist(x[i]+dx,y[i]+dy))] >= 2){ val--; } if (-uf.par[uf.find(i)] >= 2){ val--; } uf.merge(exist(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 (exist(i,j) >= 0){ 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 (exist(i+dx,j+dy) == -1){ continue; } if (uf.find(exist(i+dx, j+dy)) != uf.find(n)){ if (-uf.par[uf.find(exist(i+dx, j+dy))] >= 2){ val--; } if (-uf.par[uf.find(n)] >= 2){ val--; } uf.merge(exist(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'; }