結果

問題 No.452 横着者のビンゴゲーム
ユーザー hotpepsihotpepsi
提出日時 2016-12-04 01:21:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,176 ms / 3,000 ms
コード長 1,066 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-05-06 16:13:59
合計ジャッジ時間 18,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1,017 ms
8,192 KB
testcase_15 AC 989 ms
8,192 KB
testcase_16 AC 572 ms
6,940 KB
testcase_17 AC 45 ms
6,940 KB
testcase_18 AC 180 ms
6,944 KB
testcase_19 AC 91 ms
6,944 KB
testcase_20 AC 59 ms
6,940 KB
testcase_21 AC 461 ms
6,940 KB
testcase_22 AC 44 ms
6,940 KB
testcase_23 AC 890 ms
6,944 KB
testcase_24 AC 37 ms
6,940 KB
testcase_25 AC 21 ms
6,944 KB
testcase_26 AC 489 ms
6,940 KB
testcase_27 AC 269 ms
6,944 KB
testcase_28 AC 205 ms
6,940 KB
testcase_29 AC 97 ms
6,940 KB
testcase_30 AC 605 ms
6,940 KB
testcase_31 AC 72 ms
6,944 KB
testcase_32 AC 39 ms
6,940 KB
testcase_33 AC 186 ms
6,944 KB
testcase_34 AC 185 ms
6,940 KB
testcase_35 AC 111 ms
6,944 KB
testcase_36 AC 26 ms
6,940 KB
testcase_37 AC 28 ms
6,940 KB
testcase_38 AC 2,176 ms
7,168 KB
testcase_39 AC 1,386 ms
6,940 KB
testcase_40 AC 1,394 ms
6,944 KB
testcase_41 AC 1,382 ms
6,944 KB
testcase_42 AC 1,380 ms
6,940 KB
testcase_43 AC 1,394 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <algorithm>
#include <set>
#include <vector>
#include <cstdio>

using namespace std;
typedef long long LL;
typedef set<int> IntSet;

int get_common_length(const IntSet &a, const IntSet &b) {
	int r = 0;
	for (int x : a) {
		r += b.find(x) != b.end();
	}
	return r;
}

int main(int argc, char *argv[]) {
	int N, M;
	cin >> N >> M;
	int m = 0;
	vector<IntSet> v;
	for (int i = 0; i != M; ++i) {
		vector<IntSet> w;
		int c[100][100];
		for (int j = 0; j != N; ++j) {
			IntSet s;
			for (int k = 0; k != N; ++k) {
				cin >> c[j][k];
				s.insert(c[j][k]);
			}
			w.push_back(s);
		}
		IntSet a, b;
		for (int j = 0; j != N; ++j) {
			IntSet s;
			for (int k = 0; k != N; ++k) {
				s.insert(c[k][j]);
			}
			w.push_back(s);
			a.insert(c[j][j]);
			b.insert(c[j][N - j - 1]);
		}
		w.push_back(a);
		w.push_back(b);
		for (auto x : w) {
			for (auto y : v) {
				m = max(m, get_common_length(x, y));
			}
		}
		for (auto s : w) {
			v.push_back(s);
		}
	}
	int ans = N * 2 - m - 1;
	cout << ans << endl;
	return 0;
}
0