結果

問題 No.2094 Symmetry
ユーザー 👑 p-adicp-adic
提出日時 2023-05-22 14:05:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 197,720 KB
最終ジャッジ日時 2024-12-22 09:25:33
合計ジャッジ時間 57,234 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,308 KB
testcase_01 AC 38 ms
167,244 KB
testcase_02 AC 35 ms
59,348 KB
testcase_03 AC 34 ms
166,984 KB
testcase_04 AC 32 ms
59,628 KB
testcase_05 AC 32 ms
166,580 KB
testcase_06 AC 32 ms
58,904 KB
testcase_07 AC 37 ms
166,608 KB
testcase_08 AC 33 ms
59,504 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 36 ms
52,680 KB
testcase_28 AC 101 ms
76,480 KB
testcase_29 AC 34 ms
52,776 KB
testcase_30 AC 98 ms
76,364 KB
testcase_31 AC 97 ms
76,700 KB
testcase_32 AC 99 ms
76,236 KB
testcase_33 AC 34 ms
51,560 KB
testcase_34 AC 93 ms
76,436 KB
testcase_35 AC 93 ms
76,584 KB
testcase_36 AC 105 ms
197,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
def J():
	return map(int,I().split())
def S(D):
	return sorted(D.items(),reverse=1)
N,K=J()
R=range(N*2)
b=0
for i in R:
	for c in I():b+=c=="#"
D,E={},{}
for i in R:
	C=list(J())
	for c in C:
		if c in D:D[c]+=1
		else:D[c]=1
	for i in R:
		c=C[i]+C[N*2-i-1]
		if c in E:E[c]+=i<N
		else:E[c]=1
F,G=S(D),S(E)
s=1-b%2
m=[0]*2
for a,e,k in [b,F,0],[b//2,G,1]:
	while (a>0)*len(e):
		i,j=e.pop(0)
		a,m[k]=max(0,a-j),m[k]+min(a,j)*i
print(max(m[0],(K+m[1])*s))
0