結果

問題 No.1345 Beautiful BINGO
ユーザー maguromaguro
提出日時 2021-01-15 12:53:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 2,736 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 210,916 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 06:38:35
合計ジャッジ時間 7,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 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 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 210 ms
5,376 KB
testcase_24 AC 98 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 46 ms
5,376 KB
testcase_27 AC 212 ms
5,376 KB
testcase_28 AC 6 ms
5,376 KB
testcase_29 AC 47 ms
5,376 KB
testcase_30 AC 22 ms
5,376 KB
testcase_31 AC 12 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 215 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 205 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 48 ms
5,376 KB
testcase_39 AC 216 ms
5,376 KB
testcase_40 AC 99 ms
5,376 KB
testcase_41 AC 97 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 210 ms
5,376 KB
testcase_53 AC 211 ms
5,376 KB
testcase_54 AC 214 ms
5,376 KB
testcase_55 AC 204 ms
5,376 KB
testcase_56 AC 205 ms
5,376 KB
testcase_57 AC 212 ms
5,376 KB
testcase_58 AC 209 ms
5,376 KB
testcase_59 AC 212 ms
5,376 KB
testcase_60 AC 207 ms
5,376 KB
testcase_61 AC 208 ms
5,376 KB
testcase_62 AC 207 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
constexpr int Inf = 1000000030;
constexpr ll INF= 2000000000000000000;
constexpr ll MOD = 1000000007;
const double PI = 3.1415926535897;
typedef pair<int,int> P;
typedef pair<int,P> PP;

template<class T> inline bool chmax(T &a, T b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}

template<class T> inline bool chmin(T &a, T b) {
    if (a > b) {
        a = b;
        return 1;
    }
    return 0;
}

ll mod(ll val, ll M) {
    val = val % M;
    if(val < 0) {
        val += M;
    }
    return val;
}

template<typename T>
T RS(T N, T P, T M){
    if(P == 0) {
        return 1;
    }
    if(P < 0) {
        return 0;
    }
    if(P % 2 == 0){
        ll t = RS(N, P/2, M);
        if(M == -1) return t * t;
        return t * t % M;
    }
    if(M == -1) {
        return N * RS(N,P - 1,M);
    }
    return N * RS(N, P-1, M) % M;
}

int N,M;

int solve(vector<vector<int>> vec,int a) {
    int res = Inf;
    for(int bit = 0;bit < (1 << N);bit++) {
        int sum = 0;
        int remain = M - a;
        vector<int> cnt;
        for(int i = 0;i < N;i++) {
            if(bit & (1 << i)) {
                cnt.push_back(i);
            }
        }
        for(auto x:cnt) {
            for(int i = 0;i < N;i++) {
                sum += vec.at(x).at(i);
            }
            remain--;
        }
        vector<int> cnt2(N);
        for(int i = 0;i < N;i++) {
            if(!(bit & (1 << i))) {
                for(int j = 0;j < N;j++) {
                    cnt2.at(j) += vec.at(i).at(j);
                }
            }
        }
        sort(cnt2.begin(),cnt2.end());
        if(remain > N) continue;
        for(int i = 0;i < remain;i++) {
            sum += cnt2.at(i);
        }
        chmin(res,sum);
    }
    return res;
}

int main() {
    cin >> N >> M;
    vector<vector<int>> vec(N,vector<int>(N));
    for(int i = 0;i < N;i++) {
        for(int j = 0;j < N;j++) {
            cin >> vec.at(i).at(j);
        }
    }
    int ret = Inf;
    for(int i = 0;i < 2;i++) {
        for(int j = 0;j < 2;j++) {
            int s = 0;
            vector<vector<int>> cnt = vec;
            if(i) {
                for(int k = 0;k < N;k++) {
                    cnt.at(k).at(k) = 0;
                }
            }
            if(j) {
                for(int k = 0;k < N;k++) {
                    cnt.at(k).at(N - 1 - k) = 0;
                }
            }
            for(int k = 0;k < N;k++) {
                for(int l = 0;l < N;l++) {
                    if(cnt.at(k).at(l) == 0) s += vec.at(k).at(l);
                }
            }
            chmin(ret,solve(cnt,i + j) + s);
        }
    }
    cout << ret << endl;
}
0