結果

問題 No.1345 Beautiful BINGO
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-16 14:04:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 1,779 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 210,144 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 06:56:52
合計ジャッジ時間 9,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 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 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 16 ms
5,376 KB
testcase_23 AC 362 ms
5,376 KB
testcase_24 AC 149 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 69 ms
5,376 KB
testcase_27 AC 367 ms
5,376 KB
testcase_28 AC 8 ms
5,376 KB
testcase_29 AC 71 ms
5,376 KB
testcase_30 AC 33 ms
5,376 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 362 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 287 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 72 ms
5,376 KB
testcase_39 AC 370 ms
5,376 KB
testcase_40 AC 153 ms
5,376 KB
testcase_41 AC 123 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 1 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 268 ms
5,376 KB
testcase_53 AC 361 ms
5,376 KB
testcase_54 AC 365 ms
5,376 KB
testcase_55 AC 358 ms
5,376 KB
testcase_56 AC 271 ms
5,376 KB
testcase_57 AC 360 ms
5,376 KB
testcase_58 AC 363 ms
5,376 KB
testcase_59 AC 357 ms
5,376 KB
testcase_60 AC 298 ms
5,376 KB
testcase_61 AC 361 ms
5,376 KB
testcase_62 AC 274 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iostream>
#include <limits>
#include <numeric>
#include <type_traits>
#include <bitset>
#include <queue>

using namespace std;

#define rep(i,n,m) for(int (i)=(n);(i)<(m);(i)++)
#define rrep(i,n,m) for(ll (i)=(n);(i)>(m);(i)--)
using ll = long long;
const ll mod = 998244353;
const ll inf = 1000000000;

int main(){

    ll N,M;
    scanf("%lld%lld",&N,&M);

    vector<vector<ll>> A(N , vector<ll>(N));
    ll ans = inf;

    rep(i,0,N){
        rep(j,0,N){
            scanf("%lld",&A[i][j]);
        }
    }

    rep(i,0,1<<(N+2)){

        vector<vector<ll>> B(N , vector<ll>(N));
        rep(x,0,N){
            rep(y,0,N){
                B[x][y] = A[x][y];
            }
        }

        ll rem = M;
        ll tmp = 0;

        rep(y,0,N){
            if (((1<<y) & i) > 0){
                rem -= 1;
                rep(x,0,N){
                    tmp += B[x][y];
                    B[x][y] = 0;
                }
            }
        }

        ll yy = N;
        if (((1<<yy) & i) > 0){
            rem -= 1;
            rep(k,0,N){
                tmp += B[k][k];
                B[k][k] = 0;
            }
        }

        yy = N+1;
        if (((1<<yy) & i) > 0){
            rem -= 1;
            rep(k,0,N){
                tmp += B[k][N-k-1];
                B[k][N-k-1] = 0;
            }
        }

        //cout << rem << " " << tmp << endl;
        if (rem <= 0) ans = min(ans,tmp);
        else{
            vector<ll> lis(N,0);
            rep(x,0,N){
                rep(y,0,N){
                    lis[x] += B[x][y];
                }
            }

            sort(lis.begin(),lis.end());
            rep(c,0,rem) tmp += lis[c];
            ans = min(ans , tmp);
        }

    }

    cout << ans << endl;
 
}
0