結果

問題 No.1345 Beautiful BINGO
ユーザー hayatenhayaten
提出日時 2021-01-16 16:23:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,884 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 211,512 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 07:13:14
合計ジャッジ時間 8,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 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 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 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 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 172 ms
5,376 KB
testcase_24 AC 61 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 62 ms
5,376 KB
testcase_27 AC 315 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 59 ms
5,376 KB
testcase_30 AC 14 ms
5,376 KB
testcase_31 AC 8 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 319 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 309 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 55 ms
5,376 KB
testcase_39 AC 317 ms
5,376 KB
testcase_40 AC 123 ms
5,376 KB
testcase_41 AC 115 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 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 323 ms
5,376 KB
testcase_53 AC 328 ms
5,376 KB
testcase_54 AC 203 ms
5,376 KB
testcase_55 AC 245 ms
5,376 KB
testcase_56 AC 317 ms
5,376 KB
testcase_57 AC 315 ms
5,376 KB
testcase_58 AC 333 ms
5,376 KB
testcase_59 AC 326 ms
5,376 KB
testcase_60 AC 309 ms
5,376 KB
testcase_61 AC 271 ms
5,376 KB
testcase_62 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n - 1); i >= 0; i--)
#define ALL(v) v.begin(), v.end()
using namespace std;
using P = pair<int, int>;
typedef long long ll;
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; }
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, 1, 0, -1};

vector<ll> sum_result(const vector<vector<ll>> &A, int n){
  vector<ll> sum(2 * n + 2);
  rep(i, 2 *n +2){
    if(i < n){
      rep(j, n){
        sum[i] += A[i][j];
      }
    }else if(i >= n && i < 2 * n){
      rep(j, n){
        sum[i] += A[j][i - n];
      }
    }else{
      if(i == 2 * n){
        rep(j, n){
          sum[i] += A[j][j];
        }
      }else{
        rep(j, n){
          sum[i] += A[j][n -1- j];
        }
      }
    }
  }
  return sum;
}

int main() {
  int n, m;
  cin >> n >> m;
  ll ans = (1LL << 50);
  vector<vector<ll>> A(n, vector<ll>(n));
  rep(i, n) rep(j, n) cin >> A[i][j];
  vector<ll> sum = sum_result(A, n);
  for (int bit = 1; bit < (1 << (n + 2)); bit++){
    int d = __builtin_popcount(bit);
    vector<vector<ll>> a = A;
    if(d + n < m)continue;
    ll res = 0;
    rep(i, n){
      if(bit & (1 << i)){
        rep(j, n){
          res += a[j][i];
          a[j][i] = 0;
        }
      }
    }
    if(bit & (1 << n)){
      rep(j, n){
        res += a[j][j];
        a[j][j] = 0;
      }
    }
    if(bit & (1 << (n + 1))){
      rep(j, n){
        res += a[j][n-1-j];
        a[j][n-1-j] = 0;
      }
    }
    if(d == m){
      chmin(ans, res);
      continue;
    }
    vector<int> row(n);
    rep(i, n){
      rep(j, n) row[i] += a[i][j];
    }
    sort(ALL(row));
    rep(i, m - d) res += row[i];
    chmin(ans, res);
  }
  cout << ans << endl;
}
0