結果

問題 No.2884 Pieces on Squares
ユーザー Iroha_3856Iroha_3856
提出日時 2024-09-06 21:44:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 949 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 258,424 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 21:45:24
合計ジャッジ時間 21,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 AC 23 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 118 ms
6,940 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 150 ms
6,944 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 3 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/x86_64-pc-linux-gnu/bits/stdc++.h:66,
                 from main.cpp:1:
In member function 'std::bitset<_Nb>::reference& std::bitset<_Nb>::reference::operator=(bool) [with long unsigned int _Nb = 2001]',
    inlined from 'int main()' at main.cpp:17:16:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bitset:831:20: warning: '*(std::bitset<2001>::_WordT*)dp' may be used uninitialized [-Wmaybe-uninitialized]
  831 |             *_M_wp |= _Base::_S_maskbit(_M_bpos);
      |             ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/dsu>
using namespace atcoder;

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();
    bitset<2001> dp[H+1];
    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++;
        }
        rcsum += rcnt;
        for (int j = rcsum; j >= 0; j--) {
            dp[j+rcnt]|=(dp[j]<<ccnt);
        }
    }
    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;
}
0