結果

問題 No.1345 Beautiful BINGO
ユーザー zeronosu77108zeronosu77108
提出日時 2021-01-16 14:25:20
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,182 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 144,640 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-11-27 15:54:27
合計ジャッジ時間 57,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
9,764 KB
testcase_04 WA -
testcase_05 AC 4 ms
9,764 KB
testcase_06 AC 2 ms
9,764 KB
testcase_07 AC 42 ms
9,764 KB
testcase_08 AC 2 ms
9,760 KB
testcase_09 AC 2 ms
9,892 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 2 ms
9,760 KB
testcase_12 AC 2 ms
13,632 KB
testcase_13 AC 41 ms
9,888 KB
testcase_14 AC 2 ms
9,760 KB
testcase_15 WA -
testcase_16 AC 2 ms
9,888 KB
testcase_17 AC 2 ms
10,020 KB
testcase_18 WA -
testcase_19 AC 1 ms
9,892 KB
testcase_20 AC 2 ms
9,760 KB
testcase_21 AC 1 ms
13,636 KB
testcase_22 AC 1 ms
9,768 KB
testcase_23 AC 2 ms
9,892 KB
testcase_24 AC 11 ms
9,764 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 15 ms
9,892 KB
testcase_29 TLE -
testcase_30 AC 2 ms
9,888 KB
testcase_31 AC 23 ms
9,888 KB
testcase_32 AC 154 ms
6,820 KB
testcase_33 TLE -
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 3 ms
6,820 KB
testcase_36 TLE -
testcase_37 WA -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 WA -
testcase_43 AC 2 ms
6,820 KB
testcase_44 AC 2 ms
6,816 KB
testcase_45 AC 2 ms
6,820 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 1 ms
6,816 KB
testcase_48 AC 2 ms
6,816 KB
testcase_49 AC 1 ms
6,820 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 WA -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 WA -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//
// Created by zeronosu77108 on Jan 15, 2021.
//
#include <iostream>
#include <iomanip>
#include <vector>
#include <utility>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <algorithm>
#include <queue>
#include <cmath>
#include <numeric>
#include <set>
#include <complex>
#include <optional>
#include <climits>

using namespace std;
struct aaa{aaa(){cin.tie(nullptr); ios::sync_with_stdio(false); cout<<fixed<<setprecision(20);};}aaa;
template <class T>ostream &operator<<(ostream &o,const vector<T>&v){o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}
#define debug(v) {cerr<<"\033[1;36m[debug]\033[m "<<#v<<" : "<<(v)<<endl;}

int main() {
    int n, m;
    cin >> n >> m;

    vector a(n, vector(n, 0));
    for (int i=0; i<n; i++) {
        for (int j=0; j<n; j++) cin >> a[i][j];
    }

    long comb = (1L<<m) - 1;
    long ans = LONG_MAX;
    while (comb < 1L << (2*n+2)) {
        long x=comb&-comb, y=comb+x;
        comb = ((comb & ~y) / x >> 1) | y;

        long d = comb & 3;
        long r = ((comb)>>2) & ((1<<n)-1);
        long c = ((comb)>>(n+2));

        long sum = 0;
        vector used(n, vector(n, false));
        if (d & 1) {
            for (int i=0; i<n; i++) {
                if (used[i][i]) continue;
                used[i][i] = true;
                sum += a[i][i];
            }
        }

        if (d & 2) {
            for (int i=0; i<n; i++) {
                if (used[i][n-i-1]) continue;
                used[i][n-i-1] = true;
                sum += a[i][n-i-1];
            }
        }

        for (int i=0; i<n; i++) {
            if (r>>i&1) {
                for (int j=0; j<n; j++) {
                    if (used[i][j]) continue;
                    used[i][j] = true;
                    sum += a[i][j];
                }
            }
        }


        for (int i=0; i<n; i++) {
            if (c>>i&1) {
                for (int j=0; j<n; j++) {
                    if (used[j][i]) continue;
                    used[j][i] = true;
                    sum += a[j][i];
                }
            }
        }
        ans = min(ans, sum);
    }

    cout << ans << endl;
}
0