結果

問題 No.452 横着者のビンゴゲーム
ユーザー 37zigen37zigen
提出日時 2016-12-04 00:38:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 848 ms / 3,000 ms
コード長 1,549 bytes
コンパイル時間 5,303 ms
コンパイル使用メモリ 79,840 KB
実行使用メモリ 68,360 KB
最終ジャッジ日時 2024-11-28 23:56:50
合計ジャッジ時間 20,460 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,868 KB
testcase_01 AC 131 ms
54,136 KB
testcase_02 AC 136 ms
53,868 KB
testcase_03 AC 181 ms
54,396 KB
testcase_04 AC 139 ms
54,188 KB
testcase_05 AC 195 ms
55,424 KB
testcase_06 AC 117 ms
52,804 KB
testcase_07 AC 140 ms
54,200 KB
testcase_08 AC 155 ms
54,272 KB
testcase_09 AC 135 ms
54,008 KB
testcase_10 AC 140 ms
54,300 KB
testcase_11 AC 144 ms
54,212 KB
testcase_12 AC 137 ms
54,168 KB
testcase_13 AC 129 ms
54,044 KB
testcase_14 AC 848 ms
68,316 KB
testcase_15 AC 841 ms
68,360 KB
testcase_16 AC 590 ms
59,940 KB
testcase_17 AC 296 ms
58,628 KB
testcase_18 AC 358 ms
59,004 KB
testcase_19 AC 343 ms
59,008 KB
testcase_20 AC 285 ms
58,360 KB
testcase_21 AC 386 ms
59,980 KB
testcase_22 AC 272 ms
58,572 KB
testcase_23 AC 469 ms
59,700 KB
testcase_24 AC 273 ms
58,740 KB
testcase_25 AC 244 ms
58,440 KB
testcase_26 AC 391 ms
59,696 KB
testcase_27 AC 372 ms
59,496 KB
testcase_28 AC 369 ms
59,516 KB
testcase_29 AC 338 ms
58,980 KB
testcase_30 AC 394 ms
59,892 KB
testcase_31 AC 280 ms
59,028 KB
testcase_32 AC 263 ms
58,564 KB
testcase_33 AC 359 ms
59,524 KB
testcase_34 AC 355 ms
58,984 KB
testcase_35 AC 375 ms
58,972 KB
testcase_36 AC 250 ms
58,576 KB
testcase_37 AC 262 ms
58,720 KB
testcase_38 AC 740 ms
61,692 KB
testcase_39 AC 506 ms
59,700 KB
testcase_40 AC 514 ms
59,160 KB
testcase_41 AC 565 ms
59,692 KB
testcase_42 AC 539 ms
59,432 KB
testcase_43 AC 517 ms
59,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Q452 {
	@SuppressWarnings("unchecked")
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = Integer.parseInt(sc.next());
		int m = Integer.parseInt(sc.next());
		int[][][] table = new int[m][n][n];
		for (int i = 0; i < m; ++i) {
			for (int j = 0; j < n; ++j) {
				for (int k = 0; k < n; ++k) {
					table[i][j][k] = Integer.parseInt(sc.next());
				}
			}
		}
		ArrayList[][] list = new ArrayList[m][2 * n + 2];
		for (int i = 0; i < list.length; ++i) {
			for (int j = 0; j < list[i].length; ++j) {
				list[i][j] = new ArrayList<>();
			}
		}

		for (int i = 0; i < m; ++i) {
			int p = 0;
			for (int j = 0; j < n; ++j) {
				for (int k = 0; k < n; ++k) {
					list[i][p].add(table[i][j][k]);
					list[i][p + 1].add(table[i][k][j]);
				}
				p += 2;
				list[i][2 * n].add(table[i][j][j]);
				list[i][2 * n + 1].add(table[i][n - 1 - j][j]);
			}
		}

		int min = Integer.MAX_VALUE;
		for (int i = 0; i < m; ++i) {
			for (int j = i + 1; j < m; ++j) {
				for (ArrayList<Integer> list1 : list[i]) {
					boolean[] vis = new boolean[n * n * m + 1];
					for (int set1 : list1) {
						vis[set1] = true;
					}
					for (ArrayList<Integer> list2 : list[j]) {
						int count = 0;
						for (int set2 : list2) {
							if (vis[set2]) {
								++count;
							}
						}
						min = Math.min(2 * n - count - 1, min);
					}
				}
			}
		}
		System.out.println(min);
	}
}
0