結果

問題 No.1345 Beautiful BINGO
ユーザー zeronosu77108zeronosu77108
提出日時 2021-01-16 15:09:00
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,141 bytes
コンパイル時間 4,520 ms
コンパイル使用メモリ 143,364 KB
実行使用メモリ 14,372 KB
最終ジャッジ日時 2024-11-27 17:31:12
合計ジャッジ時間 41,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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];
    }

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

    vector col(n, vector(1<<n, 0));
    for (int i=0; i<1<<n; i++) {
        for (int j=0; j<n; j++) {
            for (int k=0; k<n; k++) {
                if ((i>>k&1)==0) col[j][i] += a[k][j];
            }
        }
    }

    long comb = (1L<<m) - 1;
    long ans = LONG_MAX;
    while (comb < 1L << (2*n+1)) {
        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;
        for (int i=0; i<n; i++) {
            if (r>>i&1) {
                sum += row[i];
            }
        }

        for (int i=0; i<n; i++) {
            if (c>>i&1) {
                sum += col[i][r];
            }
        }

        if (d&1) {
            for (int i=0; i<n; i++) {
                if (r>>i&1 || c>>i&1) continue;
                sum += a[i][i];
            }
        }

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

        ans = min(ans, sum);
    }

    cout << ans << endl;
}
0