結果

問題 No.1345 Beautiful BINGO
ユーザー hayatenhayaten
提出日時 2021-01-16 13:37:44
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,607 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 206,756 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-27 14:05:01
合計ジャッジ時間 31,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
8,448 KB
testcase_04 AC 1 ms
8,448 KB
testcase_05 AC 6 ms
8,448 KB
testcase_06 AC 1 ms
10,496 KB
testcase_07 AC 81 ms
8,576 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 2 ms
8,448 KB
testcase_10 AC 2 ms
10,624 KB
testcase_11 AC 4 ms
8,448 KB
testcase_12 AC 2 ms
10,624 KB
testcase_13 AC 80 ms
8,448 KB
testcase_14 AC 2 ms
10,624 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 WA -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 348 ms
5,248 KB
testcase_33 WA -
testcase_34 AC 1,241 ms
5,248 KB
testcase_35 AC 1,257 ms
5,248 KB
testcase_36 WA -
testcase_37 AC 1,241 ms
5,248 KB
testcase_38 TLE -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 1 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
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};

int main() {
  int n, m;
  cin >> n >> m;
  ll ans = (1LL << 60);
  vector<vector<int>> A(n, vector<int>(n));
  rep(i, n) rep(j, n) cin >> A[i][j];
  for (int bit = 1; bit < (1 << (2 * n + 2)); bit++){
    int d = __builtin_popcount(bit);
    vector<vector<int>> cnt(n, vector<int>(n, 0));
    if(d != m)continue;
    ll res = 0;
    rep(i, 2 *n +2){
      if(bit & (1 << i)){
        if(i < n){
          rep(j, n){
            if(cnt[i][j] > 1)continue;
            res += A[i][j];
            cnt[i][j]++;
          }
        }else if(i >= n && i < 2 * n){
          rep(j, n){
            if(cnt[j][i-n] > 0)continue;
            res += A[j][i - n];
            cnt[j][i- n]++;
          }
        }else{
          if(i == 2 * n){
            rep(j, n){
              if(cnt[j][j] > 0)continue;
              res += A[j][j];
              cnt[j][j]++;
            }
          }else{
            rep(j, n){
              if(cnt[j][n-1-j] > 0)continue;
              res += A[j][n -1- j];
              cnt[j][n -1-  j]++;
            }
          }
        }
      }
    }
    chmin(ans, res);
  }
  cout << ans << endl;
}
0