結果

問題 No.2884 Pieces on Squares
ユーザー Iroha_3856Iroha_3856
提出日時 2024-09-06 21:47:30
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,159 bytes
コンパイル時間 3,825 ms
コンパイル使用メモリ 168,140 KB
実行使用メモリ 13,724 KB
最終ジャッジ日時 2024-09-06 21:47:47
合計ジャッジ時間 11,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
13,600 KB
testcase_01 AC 39 ms
6,816 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 30 ms
6,940 KB
testcase_04 AC 88 ms
6,944 KB
testcase_05 AC 81 ms
6,940 KB
testcase_06 AC 71 ms
6,940 KB
testcase_07 AC 50 ms
6,940 KB
testcase_08 AC 46 ms
6,940 KB
testcase_09 AC 113 ms
6,940 KB
testcase_10 AC 42 ms
6,944 KB
testcase_11 AC 40 ms
6,944 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx512vl")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/dsu>
using namespace atcoder;

bitset<5064> dp[5000+1];
#pragma clang attribute push(__attribute__((target ("avx,avx2"))),apply_to=function)
int main() {
    int H, W, N; cin >> H >> W >> N;
    atcoder::dsu d(H+W);
    for (int i = 0; i < N; i++) {
        int a, b; cin >> a >> b;
        a--; b--;
        d.merge(a, b+H);
    }
    vector<vector<int>> G = d.groups();
    int K = (int)G.size();
    dp[0][0] = 1;
    int rcsum = 0;
    for (int i = 0; i < K; i++) {
        vector<int> g = G[i];
        int rcnt = 0, ccnt = 0;
        for (int v : g) {
            if (v < H) rcnt++;
            else ccnt++;
        }
        for (int j = rcsum; j >= 0; j--) {
            dp[j+rcnt]|=(dp[j]<<ccnt);
        }
        rcsum += rcnt;
    }
    int ans = 0;
    for (int i = 0; i <= H; i++) {
        for (int j = 0; j <= W; j++) {
            if (dp[i][j]) {
                ans = max(ans, i*(W-j)+(H-i)*j);
            }
        }
    }
    cout << ans << endl;
}
#pragma clang attribute pop
0