結果

問題 No.2696 Sign Creation
ユーザー shinchanshinchan
提出日時 2024-03-22 22:55:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,364 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 215,692 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 18:17:26
合計ジャッジ時間 3,814 ms
ジャッジサーバーID
(参考情報)
judge1 / 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,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 83 ms
6,944 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 27 ms
6,940 KB
testcase_16 AC 80 ms
6,940 KB
testcase_17 AC 20 ms
6,944 KB
testcase_18 AC 13 ms
6,940 KB
testcase_19 AC 31 ms
6,940 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 25 ms
6,944 KB
testcase_22 AC 26 ms
6,940 KB
testcase_23 AC 27 ms
6,944 KB
testcase_24 AC 27 ms
6,940 KB
testcase_25 AC 41 ms
6,940 KB
testcase_26 AC 23 ms
6,944 KB
testcase_27 AC 27 ms
6,944 KB
testcase_28 AC 23 ms
6,944 KB
testcase_29 AC 22 ms
6,944 KB
testcase_30 AC 23 ms
6,944 KB
testcase_31 AC 144 ms
6,940 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 1 ms
6,944 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 1 ms
6,944 KB
testcase_39 WA -
testcase_40 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define all(v) (v).begin(),(v).end()
#define pb(a) push_back(a)
#define rep(i, n) for(int i=0;i<n;i++)
#define foa(e, v) for(auto&& e : v)
using ll = long long;
const ll MOD7 = 1000000007, MOD998 = 998244353, INF = (1LL << 60);
#define dout(a) cout<<fixed<<setprecision(10)<<a<<endl;

struct UnionFind {
    vector<int> par;
    UnionFind(int n) :par(n, -1) { }
    void init(int n) { par.assign(n, -1); }
    int root(int x) {
        if (par[x] < 0) return x;
        else return par[x] = root(par[x]);
    }
    bool connect(int x, int y) {
        x = root(x); y = root(y);
        if (x == y) return false;
        if (par[x] > par[y]) swap(x, y);
        par[x] += par[y];
        par[y] = x;
        return true;
    }
    int size(int x) {
        return -par[root(x)];
    }
};
int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int h, w, n, d;
    cin >> h >> w >> n >> d;
    vector<int> x(n), y(n);
    UnionFind uf(n);
    vector<vector<int>> id(h, vector<int> (w, -1));
    rep(i, n) {
        cin >> x[i] >> y[i];
        x[i] --;
        y[i] --;
        id[x[i]][y[i]] = i;
    }
    vector<int> dx, dy;
    for(int i = -d; i <= d; i ++) for(int j = -d; j <= d; j ++) {
        if(abs(i) + abs(j) <= d) {
            dx.pb(i);
            dy.pb(j);
        }
    }
    int sz = dx.size();

    rep(idx, n) {
        rep(k, sz) {
            int i = x[idx] + dx[k];
            int j = y[idx] + dy[k];
            if(i < 0 or i >= h or j < 0 or j >= w) continue;
            if(id[i][j] != -1) uf.connect(id[i][j], idx);
        }
    }
    set<int> st;
    rep(i, n) if(uf.size(i) != 1) st.insert(uf.root(i));
    int Min = st.size(), Max = st.size();
    int base = st.size();
    rep(X, h) rep(Y, w) {
        set<int> st1, st2;
        rep(k, sz) {
            int i = X + dx[k];
            int j = Y + dy[k];
            if(i < 0 or i >= h or j < 0 or j >= w) continue;
            if(id[i][j] != -1) {
                if(uf.size(id[i][j]) == 1) st1.insert(uf.root(id[i][j]));
                else st2.insert(uf.root(id[i][j]));
            }
        }
        if(!st2.empty()) {
            Min = min(Min, base - (int)(st2.size() - 1));
        } else if(!st1.empty()) {
            Max = max(Max, base + 1);
        }
    }
    cout << Min << " " << Max << endl;
    return 0;
}
0