結果

問題 No.452 横着者のビンゴゲーム
ユーザー kuuso1kuuso1
提出日時 2016-12-03 01:43:37
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,751 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 109,312 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-05-06 14:17:03
合計ジャッジ時間 45,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
20,608 KB
testcase_01 AC 32 ms
20,096 KB
testcase_02 AC 35 ms
20,608 KB
testcase_03 AC 64 ms
21,120 KB
testcase_04 AC 33 ms
20,608 KB
testcase_05 AC 79 ms
21,248 KB
testcase_06 AC 35 ms
20,480 KB
testcase_07 AC 44 ms
20,992 KB
testcase_08 AC 49 ms
20,992 KB
testcase_09 AC 34 ms
20,480 KB
testcase_10 AC 34 ms
20,608 KB
testcase_11 AC 45 ms
20,736 KB
testcase_12 AC 38 ms
20,608 KB
testcase_13 AC 33 ms
20,480 KB
testcase_14 AC 1,258 ms
26,112 KB
testcase_15 AC 1,240 ms
26,112 KB
testcase_16 AC 1,488 ms
27,776 KB
testcase_17 TLE -
testcase_18 AC 533 ms
23,168 KB
testcase_19 AC 1,388 ms
23,936 KB
testcase_20 AC 1,956 ms
28,672 KB
testcase_21 AC 687 ms
23,936 KB
testcase_22 AC 2,083 ms
28,672 KB
testcase_23 AC 795 ms
27,520 KB
testcase_24 AC 2,386 ms
28,928 KB
testcase_25 AC 895 ms
23,552 KB
testcase_26 AC 1,068 ms
24,320 KB
testcase_27 AC 1,839 ms
28,544 KB
testcase_28 AC 573 ms
23,040 KB
testcase_29 AC 965 ms
23,936 KB
testcase_30 AC 917 ms
24,064 KB
testcase_31 AC 498 ms
22,912 KB
testcase_32 AC 888 ms
23,680 KB
testcase_33 AC 1,521 ms
24,576 KB
testcase_34 AC 910 ms
23,808 KB
testcase_35 AC 2,008 ms
28,416 KB
testcase_36 AC 1,152 ms
23,936 KB
testcase_37 AC 1,800 ms
28,416 KB
testcase_38 AC 1,353 ms
26,624 KB
testcase_39 AC 1,637 ms
27,648 KB
testcase_40 AC 1,494 ms
27,392 KB
testcase_41 AC 1,649 ms
27,648 KB
testcase_42 AC 1,653 ms
27,520 KB
testcase_43 AC 1,660 ms
27,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		List<BitSet>[] L = new List<BitSet>[M];
		for(int t=0;t<M;t++){
			L[t] = new List<BitSet>(2*N+2);
			for(int i=0;i<N;i++){
				var b = new BitSet();
				for(int j=0;j<N;j++) b.Set(B[t][i][j]);
				L[t].Add(b);
			}
			for(int i=0;i<N;i++){
				var b = new BitSet();
				for(int j=0;j<N;j++) b.Set(B[t][j][i]);
				L[t].Add(b);
			}
			var bx = new BitSet();
			for(int i=0;i<N;i++){
				bx.Set(B[t][i][i]);
			}
			L[t].Add(bx);
			var by = new BitSet();
			for(int i=0;i<N;i++){
				by.Set(B[t][i][N-1-i]);
			}
			L[t].Add(by);
		}
		
		int max = 0;
		int[] maxa = new int[M];
		Parallel.For(0,M,t=>{
		//for(int t=0;t<M;t++){
			foreach(var bs in L[t]){
				for(int t2=t+1;t2<M;t2++){
					foreach(var bs2 in L[t2]){
						maxa[t] = Math.Max(BitSet.Ovr(bs,bs2),maxa[t]);
					}
				}
			}
		});
		
		max = maxa.Max();
		Console.WriteLine(2*N - max -1);
		
	}
	
	int N,M;
	int[][][] B;
	
	public Sol(){
		var d = ria();
		N = d[0]; M = d[1];
		B = new int[M][][];
		for(int i=0;i<M;i++){
			B[i] = new int[N][];
			for(int j=0;j<N;j++) B[i][j] = ria();
		}
		for(int i=0;i<M;i++) for(int j=0;j<N;j++) for(int k=0;k<N;k++) B[i][j][k]--;
	}
	
	class BitSet{
		ulong[] v;
		public BitSet(){
			v = new ulong[625];
		}
		public static int Ovr(BitSet a, BitSet b){
			int ret = 0;
			for(int i=0;i<625;i++){
				ret += PopCnt(a.v[i] & b.v[i]);
			}
			return ret;
		}
		public void Set(int n){
			v[n/64] |= (1UL << (n%64));
		}
		static int PopCnt(ulong x){
			x = (x & 0x5555555555555555L) + (x >> 1 & 0x5555555555555555L);
			x = (x & 0x3333333333333333L) + (x >> 2 & 0x3333333333333333L);
			x = (x & 0x0f0f0f0f0f0f0f0fL) + (x >> 4 & 0x0f0f0f0f0f0f0f0fL);
			x = (x & 0x00ff00ff00ff00ffL) + (x >> 8 & 0x00ff00ff00ff00ffL);
			x = (x & 0x0000ffff0000ffffL) + (x >> 16 & 0x0000ffff0000ffffL);
			return (int)((x & 0x7fffffffL) + (x >>32 & 0x7fffffffL));
    	}
	}
	
	
	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0