結果

問題 No.452 横着者のビンゴゲーム
ユーザー 37zigen37zigen
提出日時 2016-12-03 23:52:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,501 ms / 3,000 ms
コード長 1,442 bytes
コンパイル時間 4,111 ms
コンパイル使用メモリ 80,336 KB
実行使用メモリ 53,100 KB
最終ジャッジ日時 2024-11-27 19:21:22
合計ジャッジ時間 40,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,000 KB
testcase_01 AC 137 ms
41,380 KB
testcase_02 AC 144 ms
41,564 KB
testcase_03 AC 226 ms
45,628 KB
testcase_04 AC 174 ms
42,016 KB
testcase_05 AC 243 ms
45,600 KB
testcase_06 AC 145 ms
41,424 KB
testcase_07 AC 181 ms
42,516 KB
testcase_08 AC 211 ms
44,880 KB
testcase_09 AC 138 ms
41,544 KB
testcase_10 AC 171 ms
41,900 KB
testcase_11 AC 188 ms
44,124 KB
testcase_12 AC 171 ms
41,800 KB
testcase_13 AC 140 ms
41,256 KB
testcase_14 AC 2,217 ms
52,952 KB
testcase_15 AC 1,990 ms
53,100 KB
testcase_16 AC 1,435 ms
50,468 KB
testcase_17 AC 489 ms
48,552 KB
testcase_18 AC 605 ms
48,784 KB
testcase_19 AC 632 ms
48,692 KB
testcase_20 AC 465 ms
47,188 KB
testcase_21 AC 950 ms
49,076 KB
testcase_22 AC 463 ms
47,328 KB
testcase_23 AC 1,412 ms
49,576 KB
testcase_24 AC 461 ms
47,796 KB
testcase_25 AC 415 ms
48,832 KB
testcase_26 AC 1,105 ms
49,232 KB
testcase_27 AC 774 ms
48,972 KB
testcase_28 AC 791 ms
48,684 KB
testcase_29 AC 525 ms
47,200 KB
testcase_30 AC 1,041 ms
50,272 KB
testcase_31 AC 489 ms
47,852 KB
testcase_32 AC 412 ms
47,032 KB
testcase_33 AC 739 ms
48,524 KB
testcase_34 AC 694 ms
48,428 KB
testcase_35 AC 579 ms
47,524 KB
testcase_36 AC 431 ms
47,152 KB
testcase_37 AC 481 ms
47,176 KB
testcase_38 AC 2,501 ms
52,372 KB
testcase_39 AC 2,288 ms
51,316 KB
testcase_40 AC 2,194 ms
51,092 KB
testcase_41 AC 2,259 ms
51,092 KB
testcase_42 AC 2,195 ms
51,200 KB
testcase_43 AC 2,210 ms
50,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class Q452 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		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] = sc.nextInt();
				}
			}
		}
		ArrayList<Set<Integer>>[] list = new ArrayList[m];
		for (int i = 0; i < m; ++i)
			list[i] = new ArrayList<>();

		for (int i = 0; i < m; ++i) {
			Set<Integer> set3 = new HashSet<>();
			Set<Integer> set4 = new HashSet<>();
			for (int j = 0; j < n; ++j) {
				Set<Integer> set1 = new HashSet<>();
				Set<Integer> set2 = new HashSet<>();
				for (int k = 0; k < n; ++k) {
					set1.add(table[i][j][k]);
					set2.add(table[i][k][j]);
				}
				set3.add(table[i][j][j]);
				set4.add(table[i][n - 1 - j][j]);
				list[i].add(set1);
				list[i].add(set2);
			}
			list[i].add(set3);
			list[i].add(set4);
		}

		int min = Integer.MAX_VALUE;

		for (int i = 0; i < m; ++i) {
			for (int j = i + 1; j < m; ++j) {
				for (Set<Integer> set1 : list[i]) {
					for (Set<Integer> set2 : list[j]) {
						Set<Integer> sum = new HashSet<>();
						sum.addAll(set1);
						sum.addAll(set2);
						min = Math.min(sum.size(), min);
					}
				}
			}
		}
		System.out.println(min - 1);
	}
}
0