結果

問題 No.1479 Matrix Eraser
ユーザー Be11T_Be11T_
提出日時 2021-04-16 21:13:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,182 bytes
コンパイル時間 4,449 ms
コンパイル使用メモリ 268,872 KB
実行使用メモリ 43,244 KB
最終ジャッジ日時 2024-07-03 00:21:23
合計ジャッジ時間 16,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
26,684 KB
testcase_01 AC 143 ms
26,768 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 170 ms
29,408 KB
testcase_08 AC 192 ms
30,584 KB
testcase_09 AC 253 ms
33,604 KB
testcase_10 AC 360 ms
38,168 KB
testcase_11 AC 270 ms
34,480 KB
testcase_12 AC 179 ms
29,304 KB
testcase_13 AC 192 ms
30,228 KB
testcase_14 AC 182 ms
29,248 KB
testcase_15 AC 152 ms
27,356 KB
testcase_16 AC 183 ms
29,700 KB
testcase_17 AC 417 ms
40,004 KB
testcase_18 AC 410 ms
40,096 KB
testcase_19 AC 412 ms
39,976 KB
testcase_20 AC 414 ms
40,000 KB
testcase_21 AC 408 ms
40,004 KB
testcase_22 AC 409 ms
39,984 KB
testcase_23 AC 411 ms
40,008 KB
testcase_24 AC 419 ms
39,980 KB
testcase_25 AC 412 ms
40,044 KB
testcase_26 AC 408 ms
40,028 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 241 ms
29,812 KB
testcase_33 AC 235 ms
29,816 KB
testcase_34 AC 234 ms
29,812 KB
testcase_35 AC 235 ms
29,808 KB
testcase_36 AC 235 ms
29,688 KB
testcase_37 AC 161 ms
30,012 KB
testcase_38 AC 239 ms
29,792 KB
testcase_39 AC 351 ms
43,244 KB
testcase_40 AC 145 ms
26,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define rep2(i, m, n) for(ll i = m; i <= n; i++)
#define rrep(i, m, n) for(ll i = m; i >= n; i--)
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define MAX(x) *max_element(all(x))
#define MIN(x) *min_element(all(x))
#define SZ(a) ((ll)(a).size())
using namespace std;
typedef long long ll;
typedef pair<int, int> P;
const ll mod = 1000000007;
const int dx[4] = { -1, 1, 0, 0 };
const int dy[4] = { 0, 0, 1, -1 };
const int inf = 1e9 + 1;
const ll INF = 1e18 + 1;
const double pi = acos(-1);

using Graph = vector<vector<int>>;
Graph G;

ll powll(ll a, ll b) {
    ll ret = 1;
    rep(i, b) ret *= a;

    return ret;
}

//typedef atcoder::modint1000000007 mint;
//typedef atcoder::modint998244353 mint;
//typedef modint mint;
struct S {
    long long value;
    int size;
};
using F = long long;

const F ID = 8e18;

S op(S a, S b) { return { a.value + b.value, a.size + b.size }; }
S e() { return { 0, 0 }; }
S mapping(F f, S x) {
    if (f != ID) x.value = f * x.size;
    return x;
}
F composition(F f, F g) { return (f == ID ? g : f); }
F id() { return ID; }

int a[510][510];


int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int h, w; cin >> h >> w;
    rep(i, h)rep(j, w) cin >> a[i][j];

    vector<vector<int>> sch(500001), scw(500001);

    rep(i, h)rep(j, w) {
        sch[a[i][j]].push_back(i * w + j);
        scw[a[i][j]].push_back(i + j * h);
    }

    int res = 0;
    std::vector<S> uh(501, { 0, 1 });
    std::vector<S> uw(501, { 0, 1 });

    atcoder::lazy_segtree<S, op, e, F, mapping, composition, id> segh(uh);
    atcoder::lazy_segtree<S, op, e, F, mapping, composition, id> segw(uw);
    rep2(i, 1, 500000) {
        segh.apply(0, 501, 0);
        segw.apply(0, 501, 0);
        rep(j, SZ(sch[i])){
            int p = sch[i][j] % w;
            segh.apply(p, p + 1, 1);
        }
        rep(j, SZ(scw[i])) {
            int p = scw[i][j] % h;
            segw.apply(p, p + 1, 1);
        }
        res += min(segh.all_prod().value, segw.all_prod().value);
    }
    cout << res << endl;
}
0