結果

問題 No.2094 Symmetry
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 10:21:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 118,568 KB
最終ジャッジ日時 2024-06-24 05:54:10
合計ジャッジ時間 8,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
56,912 KB
testcase_01 AC 48 ms
55,108 KB
testcase_02 AC 46 ms
55,648 KB
testcase_03 AC 45 ms
55,576 KB
testcase_04 AC 45 ms
56,044 KB
testcase_05 AC 44 ms
55,516 KB
testcase_06 AC 45 ms
55,800 KB
testcase_07 AC 46 ms
56,516 KB
testcase_08 AC 45 ms
56,164 KB
testcase_09 AC 204 ms
118,124 KB
testcase_10 AC 203 ms
117,560 KB
testcase_11 AC 205 ms
118,568 KB
testcase_12 AC 207 ms
118,184 KB
testcase_13 AC 172 ms
108,476 KB
testcase_14 AC 204 ms
118,444 KB
testcase_15 AC 202 ms
118,508 KB
testcase_16 AC 203 ms
118,184 KB
testcase_17 AC 170 ms
108,484 KB
testcase_18 AC 173 ms
108,328 KB
testcase_19 AC 205 ms
118,224 KB
testcase_20 AC 206 ms
118,236 KB
testcase_21 AC 205 ms
118,252 KB
testcase_22 AC 209 ms
117,316 KB
testcase_23 AC 177 ms
108,872 KB
testcase_24 AC 176 ms
109,084 KB
testcase_25 AC 206 ms
118,100 KB
testcase_26 AC 200 ms
117,900 KB
testcase_27 AC 45 ms
54,988 KB
testcase_28 WA -
testcase_29 AC 45 ms
56,132 KB
testcase_30 WA -
testcase_31 AC 132 ms
116,672 KB
testcase_32 AC 138 ms
116,484 KB
testcase_33 AC 45 ms
55,608 KB
testcase_34 AC 134 ms
116,372 KB
testcase_35 AC 135 ms
116,548 KB
testcase_36 AC 125 ms
109,372 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()

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