結果
問題 | No.452 横着者のビンゴゲーム |
ユーザー | fal_rnd |
提出日時 | 2016-12-04 01:26:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 787 ms / 3,000 ms |
コード長 | 1,460 bytes |
コンパイル時間 | 2,599 ms |
コンパイル使用メモリ | 78,304 KB |
実行使用メモリ | 52,716 KB |
最終ジャッジ日時 | 2024-11-29 00:06:20 |
合計ジャッジ時間 | 20,636 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,628 KB |
testcase_01 | AC | 138 ms
41,460 KB |
testcase_02 | AC | 147 ms
41,144 KB |
testcase_03 | AC | 180 ms
42,428 KB |
testcase_04 | AC | 146 ms
41,560 KB |
testcase_05 | AC | 198 ms
43,136 KB |
testcase_06 | AC | 139 ms
41,172 KB |
testcase_07 | AC | 145 ms
41,356 KB |
testcase_08 | AC | 159 ms
41,724 KB |
testcase_09 | AC | 138 ms
41,340 KB |
testcase_10 | AC | 146 ms
41,296 KB |
testcase_11 | AC | 151 ms
41,532 KB |
testcase_12 | AC | 146 ms
41,704 KB |
testcase_13 | AC | 138 ms
41,228 KB |
testcase_14 | AC | 730 ms
52,296 KB |
testcase_15 | AC | 716 ms
52,716 KB |
testcase_16 | AC | 582 ms
50,280 KB |
testcase_17 | AC | 308 ms
46,728 KB |
testcase_18 | AC | 370 ms
47,996 KB |
testcase_19 | AC | 363 ms
47,928 KB |
testcase_20 | AC | 307 ms
46,604 KB |
testcase_21 | AC | 441 ms
48,928 KB |
testcase_22 | AC | 323 ms
46,764 KB |
testcase_23 | AC | 590 ms
50,204 KB |
testcase_24 | AC | 329 ms
46,888 KB |
testcase_25 | AC | 261 ms
46,408 KB |
testcase_26 | AC | 464 ms
48,872 KB |
testcase_27 | AC | 447 ms
48,444 KB |
testcase_28 | AC | 372 ms
48,160 KB |
testcase_29 | AC | 361 ms
47,948 KB |
testcase_30 | AC | 479 ms
49,284 KB |
testcase_31 | AC | 334 ms
47,856 KB |
testcase_32 | AC | 271 ms
46,612 KB |
testcase_33 | AC | 415 ms
48,064 KB |
testcase_34 | AC | 384 ms
48,172 KB |
testcase_35 | AC | 420 ms
48,004 KB |
testcase_36 | AC | 279 ms
46,720 KB |
testcase_37 | AC | 256 ms
46,640 KB |
testcase_38 | AC | 787 ms
51,880 KB |
testcase_39 | AC | 627 ms
50,816 KB |
testcase_40 | AC | 632 ms
50,716 KB |
testcase_41 | AC | 656 ms
50,744 KB |
testcase_42 | AC | 628 ms
50,748 KB |
testcase_43 | AC | 619 ms
50,676 KB |
ソースコード
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; } }