結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
12,192 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 AC 2 ms
12,196 KB
testcase_03 AC 1 ms
8,704 KB
testcase_04 AC 1 ms
10,624 KB
testcase_05 AC 2 ms
8,448 KB
testcase_06 AC 1 ms
10,624 KB
testcase_07 AC 6 ms
8,704 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
8,576 KB
testcase_10 AC 1 ms
10,624 KB
testcase_11 AC 2 ms
8,704 KB
testcase_12 AC 1 ms
10,624 KB
testcase_13 AC 6 ms
8,704 KB
testcase_14 AC 0 ms
8,704 KB
testcase_15 AC 1 ms
10,624 KB
testcase_16 AC 2 ms
10,624 KB
testcase_17 AC 2 ms
8,832 KB
testcase_18 AC 2 ms
10,624 KB
testcase_19 AC 2 ms
8,704 KB
testcase_20 AC 1 ms
10,624 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 18 ms
10,624 KB
testcase_25 AC 238 ms
5,248 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 4 ms
5,248 KB
testcase_29 TLE -
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 17 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 532 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 1,056 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 WA -
testcase_49 AC 2 ms
5,248 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 27 ms
5,248 KB
testcase_53 TLE -
testcase_54 AC 377 ms
5,248 KB
testcase_55 TLE -
testcase_56 AC 27 ms
5,248 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 1,868 ms
5,248 KB
testcase_61 TLE -
testcase_62 AC 11 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

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