結果

問題 No.452 横着者のビンゴゲーム
ユーザー fal_rndfal_rnd
提出日時 2016-12-04 01:26:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 815 ms / 3,000 ms
コード長 1,460 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 78,472 KB
実行使用メモリ 58,840 KB
最終ジャッジ日時 2024-05-06 16:14:20
合計ジャッジ時間 18,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,456 KB
testcase_01 AC 104 ms
40,388 KB
testcase_02 AC 126 ms
41,496 KB
testcase_03 AC 160 ms
42,672 KB
testcase_04 AC 131 ms
41,432 KB
testcase_05 AC 165 ms
43,028 KB
testcase_06 AC 110 ms
40,140 KB
testcase_07 AC 128 ms
41,584 KB
testcase_08 AC 132 ms
41,836 KB
testcase_09 AC 115 ms
41,496 KB
testcase_10 AC 132 ms
41,728 KB
testcase_11 AC 140 ms
42,356 KB
testcase_12 AC 134 ms
41,804 KB
testcase_13 AC 124 ms
41,488 KB
testcase_14 AC 657 ms
52,816 KB
testcase_15 AC 619 ms
52,428 KB
testcase_16 AC 515 ms
50,392 KB
testcase_17 AC 275 ms
46,704 KB
testcase_18 AC 336 ms
47,952 KB
testcase_19 AC 339 ms
48,176 KB
testcase_20 AC 292 ms
47,012 KB
testcase_21 AC 363 ms
48,348 KB
testcase_22 AC 327 ms
47,096 KB
testcase_23 AC 491 ms
50,036 KB
testcase_24 AC 301 ms
47,000 KB
testcase_25 AC 233 ms
46,112 KB
testcase_26 AC 399 ms
49,120 KB
testcase_27 AC 413 ms
48,580 KB
testcase_28 AC 327 ms
48,460 KB
testcase_29 AC 271 ms
46,788 KB
testcase_30 AC 409 ms
49,336 KB
testcase_31 AC 234 ms
46,920 KB
testcase_32 AC 244 ms
46,284 KB
testcase_33 AC 374 ms
48,364 KB
testcase_34 AC 332 ms
48,236 KB
testcase_35 AC 358 ms
48,116 KB
testcase_36 AC 249 ms
46,448 KB
testcase_37 AC 263 ms
46,636 KB
testcase_38 AC 815 ms
58,840 KB
testcase_39 AC 548 ms
50,928 KB
testcase_40 AC 505 ms
50,572 KB
testcase_41 AC 543 ms
50,892 KB
testcase_42 AC 536 ms
50,956 KB
testcase_43 AC 543 ms
51,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int size = s.nextInt();
		int[][] in = new int[size][size];
		Card[] cards = new Card[s.nextInt()];
		for (int i=0;i<cards.length;i++) {

			for(int j=0;j<size;j++)
				for(int k=0;k<size;k++)
					in[j][k] = Integer.parseInt(s.next());

			cards[i] = new Card(in,size*size*cards.length);
		}
		int v=0;
		for(int i=0;i<cards.length;i++) {
			for(int j=i+1;j<cards.length;j++) {
				v=Math.max(v, cards[i].match(cards[j]));
			}
		}
		System.out.println(size*2-1-v);
	}
}
class Card{
	ArrayList<BitSet> edge;
	Card(int[][] in,int max) {
		int size = in.length;
		edge = new ArrayList<>(in.length*2+2);
		BitSet
			h =new BitSet(max),
			v =new BitSet(max),
			t1=new BitSet(max),
			t2=new BitSet(max);

		for(int i=0;i<size;++i) {
			h.clear();
			v.clear();
			for(int j=0;j<size;++j) {
				h.set(in[i][j]);
				v.set(in[j][i]);
			}
			edge.add((BitSet)h.clone());
			edge.add((BitSet)v.clone());
			t1.set(in[i][i]);
			t2.set(in[i][size-i-1]);
		}
		edge.add(t1);
		edge.add(t2);
	}

	public int match(Card card) {
		int r=0,max=edge.get(0).cardinality();
		roop:
		for(int i=0;i<edge.size();i++) {
			BitSet b = card.edge.get(i);
			for(int j=0;j<edge.size();j++) {
				BitSet bb = ((BitSet) b.clone());
				bb.and(edge.get(j));
				r=Math.max(r, bb.cardinality());
				if(r==max)
					break roop;
			}
		}
		return r;
	}
}
0