結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1,011 ms
8,192 KB
testcase_15 AC 984 ms
8,064 KB
testcase_16 AC 574 ms
5,632 KB
testcase_17 AC 45 ms
5,248 KB
testcase_18 AC 181 ms
5,248 KB
testcase_19 AC 92 ms
5,248 KB
testcase_20 AC 60 ms
5,248 KB
testcase_21 AC 466 ms
5,248 KB
testcase_22 AC 44 ms
5,248 KB
testcase_23 AC 886 ms
5,504 KB
testcase_24 AC 38 ms
5,248 KB
testcase_25 AC 21 ms
5,248 KB
testcase_26 AC 490 ms
5,248 KB
testcase_27 AC 267 ms
5,248 KB
testcase_28 AC 203 ms
5,248 KB
testcase_29 AC 95 ms
5,248 KB
testcase_30 AC 602 ms
5,248 KB
testcase_31 AC 72 ms
5,248 KB
testcase_32 AC 40 ms
5,248 KB
testcase_33 AC 186 ms
5,248 KB
testcase_34 AC 184 ms
5,248 KB
testcase_35 AC 112 ms
5,248 KB
testcase_36 AC 25 ms
5,248 KB
testcase_37 AC 28 ms
5,248 KB
testcase_38 AC 2,160 ms
7,168 KB
testcase_39 AC 1,390 ms
5,632 KB
testcase_40 AC 1,389 ms
5,760 KB
testcase_41 AC 1,389 ms
5,632 KB
testcase_42 AC 1,390 ms
5,632 KB
testcase_43 AC 1,381 ms
5,632 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