結果

問題 No.2251 Marking Grid
ユーザー math_hiyokomath_hiyoko
提出日時 2023-03-22 02:04:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 3,000 ms
コード長 796 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 96,404 KB
実行使用メモリ 14,940 KB
最終ジャッジ日時 2024-09-18 14:40:36
合計ジャッジ時間 5,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 294 ms
13,184 KB
testcase_23 AC 353 ms
14,940 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 344 ms
14,908 KB
testcase_26 AC 77 ms
6,016 KB
testcase_27 AC 188 ms
9,600 KB
testcase_28 AC 10 ms
5,376 KB
testcase_29 AC 203 ms
10,116 KB
testcase_30 AC 64 ms
5,376 KB
testcase_31 AC 43 ms
5,376 KB
testcase_32 AC 23 ms
5,376 KB
testcase_33 AC 288 ms
10,744 KB
testcase_34 AC 32 ms
5,376 KB
testcase_35 AC 138 ms
6,912 KB
testcase_36 AC 179 ms
7,808 KB
testcase_37 AC 238 ms
9,344 KB
testcase_38 AC 14 ms
6,940 KB
testcase_39 AC 9 ms
6,944 KB
testcase_40 AC 126 ms
6,944 KB
testcase_41 AC 63 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/dsu>
#include <atcoder/modint>
#include <algorithm>
#include <iostream>
#include <tuple>
#include <vector>
using namespace atcoder;
using namespace std;
using mint = modint998244353;


int main(){
    int H, W;
    cin >> H >> W;

    vector<tuple<int, int, int>> A(H * W);
    for(int i = 0; i < H; i++){
        for(int j = 0; j < W; j++){
            int a;
            cin >> a;
            A[i * W + j] = {a, i, j + H};
        }
    }
    sort(A.rbegin(), A.rend());

    mint ans = 0,
         pow2 = mint::raw(2).pow(H + W - 1),
         inv2 = mint::raw(2).inv();
    dsu d(H + W);
    for(auto [a, i, j] : A){
        if(d.same(i, j)) continue;
        d.merge(i, j);
        pow2 *= inv2;
        ans += pow2 * a;
    }
    cout << ans.val() << '\n';

    return 0;
}
0