結果

問題 No.1345 Beautiful BINGO
ユーザー Plan8Plan8
提出日時 2021-01-16 14:48:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,643 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 210,568 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-05-05 17:23:06
合計ジャッジ時間 6,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 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 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 19 ms
5,376 KB
testcase_25 AC 239 ms
5,376 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<long long> VL;
typedef vector<vector<long long>> VVL;
typedef pair<int,int> Pair;
typedef tuple<int,int,int> tpl;

#define ALL(a)  (a).begin(),(a).end()
#define SORT(c) sort((c).begin(),(c).end())
#define REVERSE(c) reverse((c).begin(),(c).end())
#define EXIST(m,v) (m).find((v)) != (m).end()
#define LB(a,x) lower_bound((a).begin(), (a).end(), x) - (a).begin()
#define UB(a,x) upper_bound((a).begin(), (a).end(), x) - (a).begin()

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)
#define RFOR(i,a,b) for(int i=(a)-1;i>=(b);--i)
#define RREP(i,n) RFOR(i,n,0)

#define en "\n"

constexpr double EPS = 1e-9;
constexpr double PI  = 3.1415926535897932;
constexpr int INF = 2147483647;
constexpr long long LINF = 1LL<<60;
constexpr long long MOD = 1000000007; // 998244353;

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

int N;
VVI v;

int solve(VVI& A, int M){
    if(M<=0) return 0;
    int ret = INF;
    REP(i,1<<N){
        int nbit = 0, base = 0;
        REP(j,N)
            if((i>>j)&1){
                nbit++;
                REP(k,N) base += A[j][k];
            }
        if(M-nbit>N || M-nbit<0) continue;

        for(int S : v[M-nbit]){
            int tmp = 0;
            REP(j,N){
                if(((S>>j)&1) == 0) continue;
                REP(k,N){
                    if((i>>k)&1) continue;
                    tmp += A[k][j];
                }
            }
            chmin(ret, base+tmp);
        }
    }
    return ret;
}

void Main(){
    int M; cin >> N >> M;
    VVI A(N,VI(N)); REP(i,N)REP(j,N) cin >> A[i][j];

    v.resize(N+1);
    REP(i,1<<N){
        int cnt = 0;
        REP(j,N) if((i>>j)&1) cnt++;
        v[cnt].push_back(i);
    }

    int ans = solve(A,M);
    // 対角線1本
    int base = 0;
    VVI B(A); REP(i,N) B[i][i] = 0, base += A[i][i];
    chmin(ans, solve(B,M-1)+base);

    base = 0;
    B = VVI(A); REP(i,N) B[i][N-1-i] = 0, base += A[i][N-1-i];
    chmin(ans, solve(B,M-1)+base);

    // 対角線2本
    base = 0;
    B = VVI(A); REP(i,N) B[i][i] = B[i][N-1-i] = 0;
    REP(i,N){
        base += A[i][i] + A[i][N-1-i];
        if(i == N-1-i) base -= A[i][i];
    }
    chmin(ans, solve(B,M-2)+base);

    cout << ans << en;
    return;
}

int main(void){
    cin.tie(0);cout.tie(0);ios_base::sync_with_stdio(0);cout<<fixed<<setprecision(15);
    int t=1; //cin>>t;
    REP(_,t) Main();
    return 0;
}
0