結果

問題 No.1345 Beautiful BINGO
ユーザー sten_sansten_san
提出日時 2021-01-16 14:34:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,915 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 213,700 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 17:02:02
合計ジャッジ時間 11,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 416 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 415 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 426 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 WA -
testcase_39 AC 409 ms
5,376 KB
testcase_40 WA -
testcase_41 AC 192 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 2 ms
5,376 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 436 ms
5,376 KB
testcase_53 AC 423 ms
5,376 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 408 ms
5,376 KB
testcase_57 AC 415 ms
5,376 KB
testcase_58 WA -
testcase_59 AC 406 ms
5,376 KB
testcase_60 AC 419 ms
5,376 KB
testcase_61 WA -
testcase_62 AC 418 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <typename T> using vec = vector<T>;
template <typename T> using vvec = vec<vec<T>>;
template <typename T> using lqueue = priority_queue<T, vector<T>, greater<T>>;
template <typename T> using gqueue = priority_queue<T, vector<T>, less<T>>;

int main() {
    int n, m; cin >> n >> m;
    vvec<int> a(n, vec<int>(n));
    for (auto &e1 : a) for (auto &e2 : e1) cin >> e2;

    int ans = INT_MAX;
    for (int i = 0; i < (1 << (n + 2)); ++i) {
        vvec<bool> used(n, vec<bool>(n, false));

        vec<int> col(n, 0);
        for (int j = 0; j < n; ++j) {
            for (int k = 0; k < n; ++k) {
                col[k] += a[j][k];
            }
        }

        int count = 0, cost = 0;
        for (int j = 0; j < n; ++j) {
            if (!(i & (1 << j))) continue;
            for (int k = 0; k < n; ++k) {
                used[j][k] = true;
                cost += a[j][k];
                col[k] -= a[j][k];
            }
            ++count;
        }

        int dia = i >> n;
        if (dia & (1 << 0)) {
            for (int j = 0; j < n; ++j) {
                if (used[j][j]) continue;
                used[j][j] = true;
                cost += a[j][j];
                col[j] -= a[j][j];
            }
            ++count;
        }
        if (dia & (1 << 1)) {
            for (int j = 0; j < n; ++j) {
                int y = j, x = n - j - 1;
                if (used[y][x]) continue;
                used[y][x] = true;
                cost += a[y][x];
                col[x] -= a[y][x];
            }
            ++count;
        }

        sort(begin(col), end(col));
        for (int j = 1; j < n; ++j) {
            col[j] += col[j - 1];
        }

        if (m <= count) {
            ans = min(ans, cost);
        }
        else {
            ans = min(ans, cost + col[m - count - 1]);
        }
    }

    cout << ans << endl;
}

0