結果

問題 No.452 横着者のビンゴゲーム
ユーザー どららどらら
提出日時 2016-12-03 21:44:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,639 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 96,436 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-05-05 18:57:38
合計ジャッジ時間 24,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2,970 ms
5,376 KB
testcase_15 AC 2,910 ms
5,376 KB
testcase_16 AC 1,597 ms
5,376 KB
testcase_17 AC 119 ms
5,376 KB
testcase_18 AC 485 ms
5,376 KB
testcase_19 AC 254 ms
5,376 KB
testcase_20 AC 147 ms
5,376 KB
testcase_21 AC 1,182 ms
5,376 KB
testcase_22 AC 106 ms
5,376 KB
testcase_23 AC 2,216 ms
5,376 KB
testcase_24 AC 78 ms
5,376 KB
testcase_25 AC 48 ms
5,376 KB
testcase_26 AC 1,268 ms
5,376 KB
testcase_27 AC 786 ms
5,376 KB
testcase_28 AC 528 ms
5,376 KB
testcase_29 AC 276 ms
5,376 KB
testcase_30 AC 1,558 ms
5,376 KB
testcase_31 AC 208 ms
5,376 KB
testcase_32 AC 111 ms
5,376 KB
testcase_33 AC 584 ms
5,376 KB
testcase_34 AC 508 ms
5,376 KB
testcase_35 AC 305 ms
5,376 KB
testcase_36 AC 63 ms
5,376 KB
testcase_37 AC 60 ms
5,376 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cmath>
#include <iostream>
#include <queue>
#include <list>
#include <stack>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;

struct ST {
  int m;
  vector<int> v;
  ST(int n):v(n,0){}
};

ll calc(const ST& a, const ST& b){
  map<int,int> memo;
  rep(i,a.v.size()){
    memo[a.v[i]]++;
    memo[b.v[i]]++;
  }
  ll ret = 0;
  FOR(it,memo){
    if(it->second == 2) ret++;
  }
  return ret;
}

int main(){
  ios::sync_with_stdio(false);
  
  int N, M;
  cin >> N >> M;
  vector<ST> v;
  
  rep(i,M){
    vector< vector<int> > card(N, vector<int>(N, 0));
    rep(j,N){
      rep(k,N){
        cin >> card[j][k];
      }
    }

    rep(j,N){
      ST st(N);
      st.m = i;
      rep(k,N) st.v[k] = card[j][k];
      v.push_back(st);
    }
    rep(k,N){
      ST st(N);
      st.m = i;
      rep(j,N) st.v[j] = card[j][k];
      v.push_back(st);
    }
    {
      ST st1(N), st2(N);
      st1.m = i;
      st2.m = i;
      rep(j,N){
        st1.v[j] = card[j][j];
        st2.v[j] = card[j][N-1-j];
      }
      v.push_back(st1);
      v.push_back(st2);
    }
  }

  ll c = 0;
  rep(i,v.size()){
    REP(j,i+1,v.size()){
      if(v[i].m == v[j].m) continue;
      c = max(c, calc(v[i], v[j]));
    }
  }

  cout << 2LL*N - c - 1 << endl;
    
  return 0;
}
0