結果

問題 No.2094 Symmetry
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 10:23:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 118,644 KB
最終ジャッジ日時 2024-06-24 05:56:16
合計ジャッジ時間 7,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,296 KB
testcase_01 AC 45 ms
55,424 KB
testcase_02 AC 45 ms
55,296 KB
testcase_03 AC 45 ms
55,040 KB
testcase_04 AC 45 ms
55,424 KB
testcase_05 AC 47 ms
55,040 KB
testcase_06 AC 46 ms
55,296 KB
testcase_07 AC 46 ms
55,168 KB
testcase_08 AC 45 ms
55,412 KB
testcase_09 AC 206 ms
117,744 KB
testcase_10 AC 205 ms
117,432 KB
testcase_11 AC 205 ms
118,464 KB
testcase_12 AC 207 ms
118,424 KB
testcase_13 AC 173 ms
108,696 KB
testcase_14 AC 206 ms
118,076 KB
testcase_15 AC 206 ms
117,888 KB
testcase_16 AC 205 ms
117,760 KB
testcase_17 AC 173 ms
109,056 KB
testcase_18 AC 175 ms
108,348 KB
testcase_19 AC 209 ms
118,508 KB
testcase_20 AC 204 ms
118,016 KB
testcase_21 AC 205 ms
118,644 KB
testcase_22 AC 203 ms
117,120 KB
testcase_23 AC 174 ms
109,056 KB
testcase_24 AC 174 ms
108,928 KB
testcase_25 AC 207 ms
118,016 KB
testcase_26 AC 205 ms
117,760 KB
testcase_27 AC 46 ms
55,552 KB
testcase_28 AC 123 ms
107,952 KB
testcase_29 AC 47 ms
54,912 KB
testcase_30 AC 127 ms
107,520 KB
testcase_31 AC 135 ms
116,528 KB
testcase_32 AC 137 ms
116,644 KB
testcase_33 AC 48 ms
55,168 KB
testcase_34 AC 136 ms
116,096 KB
testcase_35 AC 138 ms
116,712 KB
testcase_36 AC 126 ms
109,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
import math,sys
input = sys.stdin.readline

N,K = map(int,input().split())
S = [list(input())[:-1] for _ in range(2*N)]
C = [list(map(int,input().split())) for _ in range(2*N)]
X = 0
for i in range(2*N):
    S[i] = [int(j=='#') for j in S[i]]
    X += sum(S[i])
ans = 0
Y = []
for i in range(2*N):
    for j in range(2*N):
        Y.append(C[i][j])
Y.sort()
ans = sum(Y[-X:])

if X%2==1:
    print(ans)
    exit()
if X==0:
    print(K)
    exit()
x = X//2
Y = []
for i in range(2*N):
    for j in range(N):
        Y.append(C[i][j]+C[i][-1-j])
Y.sort()
tmp = sum(Y[-x:])+K
print(max(ans,tmp))
0