結果
問題 | No.2696 Sign Creation |
ユーザー | srjywrdnprkt |
提出日時 | 2024-03-22 22:34:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 303 ms / 2,500 ms |
コード長 | 3,054 bytes |
コンパイル時間 | 2,467 ms |
コンパイル使用メモリ | 217,604 KB |
実行使用メモリ | 10,000 KB |
最終ジャッジ日時 | 2024-05-17 18:14:39 |
合計ジャッジ時間 | 6,187 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 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 | 4 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 5 ms
6,940 KB |
testcase_11 | AC | 7 ms
6,940 KB |
testcase_12 | AC | 7 ms
6,940 KB |
testcase_13 | AC | 288 ms
6,940 KB |
testcase_14 | AC | 115 ms
6,940 KB |
testcase_15 | AC | 89 ms
6,940 KB |
testcase_16 | AC | 217 ms
6,940 KB |
testcase_17 | AC | 123 ms
6,944 KB |
testcase_18 | AC | 100 ms
6,940 KB |
testcase_19 | AC | 149 ms
6,944 KB |
testcase_20 | AC | 16 ms
6,940 KB |
testcase_21 | AC | 66 ms
6,944 KB |
testcase_22 | AC | 200 ms
6,944 KB |
testcase_23 | AC | 112 ms
6,940 KB |
testcase_24 | AC | 104 ms
6,944 KB |
testcase_25 | AC | 197 ms
6,940 KB |
testcase_26 | AC | 199 ms
6,940 KB |
testcase_27 | AC | 165 ms
6,940 KB |
testcase_28 | AC | 128 ms
6,940 KB |
testcase_29 | AC | 196 ms
6,940 KB |
testcase_30 | AC | 196 ms
6,940 KB |
testcase_31 | AC | 303 ms
10,000 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 4 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 2 ms
6,944 KB |
testcase_39 | AC | 2 ms
6,940 KB |
testcase_40 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct UnionFind { int ngroup, N; vector<int> par, siz; UnionFind(int _N) : N(_N), par(_N), siz(_N){ ngroup = _N; for(int i = 0; i < N; i++) par[i] = i, siz[i] = 1; } int root(int x) { if (par[x] == x) return x; return par[x] = root(par[x]); } int unite(int x, int y) { int rx = root(x), ry = root(y); if (rx == ry) return rx; ngroup--; if (siz[rx] > siz[ry]) swap(rx, ry); par[rx] = ry; siz[ry] += siz[rx]; return ry; } bool same(int x, int y) { int rx = root(x), ry = root(y); return rx == ry; } int size(int x) {return siz[root(x)];} int group_count() {return ngroup;} vector<vector<int>> groups(){ vector<int> rev(N); int nrt=0; for (int i=0; i<N; i++) if (root(i) == i) rev[i] = nrt, nrt++; vector<vector<int>> res(nrt); for (int i=0; i<N; i++) res[rev[root(i)]].push_back(i); return res; } }; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll H, W, N, D, cnt=0, mi, mx, c, d; cin >> H >> W >> N >> D; vector<ll> x(N), y(N); unordered_set<ll> st; auto check=[&](ll h, ll w){ return 0<=h && h<H && 0<=w && w<W; }; auto f=[&](ll h, ll w){ return h*W+w; }; for (int i=0; i<N; i++){ cin >> x[i] >> y[i]; x[i]--; y[i]--; st.insert(f(x[i], y[i])); } UnionFind uf(H*W); for (int i=0; i<N; i++){ int h, w; for (int j=-5; j<=5; j++){ for (int k=-5; k<=5; k++){ h=x[i]+j, w=y[i]+k; if (!check(h, w) || abs(j)+abs(k) > D) continue; if (st.count(f(h, w))) uf.unite(f(x[i], y[i]), f(h, w)); } } } for (int i=0; i<H; i++){ for (int j=0; j<W; j++){ if (st.count(f(i, j)) && uf.root(f(i, j)) == f(i, j)){ if (uf.size(f(i, j)) > 1) cnt++; } } } mi = cnt; mx = cnt; for (int i=0; i<H; i++){ for (int j=0; j<W; j++){ if (st.count(f(i, j))) continue; unordered_set<ll> st2; c = 0; for (int k=-5; k<=5; k++){ for (int l=-5; l<=5; l++){ int h=i+k, w=j+l; if (!check(h, w) || abs(k)+abs(l) > D) continue; if (st.count(f(h, w))){ if (uf.size(f(h, w)) == 1) c = 1; if (uf.size(f(h, w)) > 1) st2.insert(uf.root(f(h, w))); } } } d = st2.size(); if (d == 0 && c == 1){ mi = min(mi, cnt+1); mx = max(mx, cnt+1); } else if (d >= 1){ mi = min(mi, cnt-(d-1)); mx = max(mx, cnt-(d-1)); } } } cout << mi << " " << mx << endl; return 0; }