結果

問題 No.1345 Beautiful BINGO
ユーザー rogi52rogi52
提出日時 2021-01-16 23:31:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 1,174 bytes
コンパイル時間 1,852 ms
コンパイル使用メモリ 176,332 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 08:15:44
合計ジャッジ時間 9,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 3 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 2 ms
5,376 KB
testcase_13 AC 3 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 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 16 ms
5,376 KB
testcase_23 AC 330 ms
5,376 KB
testcase_24 AC 142 ms
5,376 KB
testcase_25 AC 8 ms
5,376 KB
testcase_26 AC 66 ms
5,376 KB
testcase_27 AC 321 ms
5,376 KB
testcase_28 AC 8 ms
5,376 KB
testcase_29 AC 67 ms
5,376 KB
testcase_30 AC 31 ms
5,376 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 325 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 5 ms
5,376 KB
testcase_36 AC 323 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 70 ms
5,376 KB
testcase_39 AC 325 ms
5,376 KB
testcase_40 AC 148 ms
5,376 KB
testcase_41 AC 143 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 324 ms
5,376 KB
testcase_53 AC 321 ms
5,376 KB
testcase_54 AC 317 ms
5,376 KB
testcase_55 AC 316 ms
5,376 KB
testcase_56 AC 318 ms
5,376 KB
testcase_57 AC 323 ms
5,376 KB
testcase_58 AC 318 ms
5,376 KB
testcase_59 AC 319 ms
5,376 KB
testcase_60 AC 319 ms
5,376 KB
testcase_61 AC 325 ms
5,376 KB
testcase_62 AC 327 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;
#define bit(n,k) ((n>>k)&1)

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);

    int N,M; cin >> N >> M;
    vector<vector<int>> A(N, vector<int> (N));
    rep(i,N)rep(j,N) cin >> A[i][j];
    int ans = 1e9;
    rep(i,1<<(N+2)){
        auto B = A;
        int cost = 0;
        rep(j,N+2)if(bit(i,j)){
            if(j == N){
                rep(k,N){
                    cost += B[k][k];
                    B[k][k] = 0;
                }
            }else if(j == N + 1){
                rep(k,N){
                    cost += B[k][N-1-k];
                    B[k][N-1-k] = 0;
                }
            }else{
                rep(k,N){
                    cost += B[k][j];
                    B[k][j] = 0;
                }
            }
        }

        vector<int> v;
        rep(j,N){
            int tmp = 0;
            rep(k,N) tmp += B[j][k];
            v.emplace_back(tmp);
        }
        sort(v.begin(), v.end());
        rep(j,M-__builtin_popcount(i)) cost += v[j];
        ans = min(ans, cost);
    }
    cout << ans << '\n';
}
0