結果

問題 No.2094 Symmetry
ユーザー ntudantuda
提出日時 2022-10-08 14:06:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 1,071 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 108,888 KB
最終ジャッジ日時 2024-06-22 16:40:42
合計ジャッジ時間 7,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,064 KB
testcase_01 AC 32 ms
52,068 KB
testcase_02 AC 34 ms
52,800 KB
testcase_03 AC 33 ms
52,708 KB
testcase_04 AC 33 ms
52,784 KB
testcase_05 AC 32 ms
52,324 KB
testcase_06 AC 34 ms
52,576 KB
testcase_07 AC 32 ms
53,056 KB
testcase_08 AC 32 ms
52,332 KB
testcase_09 AC 169 ms
108,024 KB
testcase_10 AC 167 ms
108,012 KB
testcase_11 AC 171 ms
108,888 KB
testcase_12 AC 171 ms
108,620 KB
testcase_13 AC 170 ms
108,104 KB
testcase_14 AC 176 ms
108,516 KB
testcase_15 AC 169 ms
108,600 KB
testcase_16 AC 169 ms
108,256 KB
testcase_17 AC 167 ms
107,580 KB
testcase_18 AC 174 ms
107,588 KB
testcase_19 AC 173 ms
108,484 KB
testcase_20 AC 173 ms
108,592 KB
testcase_21 AC 170 ms
108,860 KB
testcase_22 AC 170 ms
107,584 KB
testcase_23 AC 171 ms
108,384 KB
testcase_24 AC 169 ms
108,092 KB
testcase_25 AC 171 ms
108,392 KB
testcase_26 AC 176 ms
108,072 KB
testcase_27 AC 33 ms
53,016 KB
testcase_28 AC 102 ms
104,004 KB
testcase_29 AC 34 ms
52,312 KB
testcase_30 AC 103 ms
103,892 KB
testcase_31 AC 106 ms
106,832 KB
testcase_32 AC 107 ms
106,956 KB
testcase_33 AC 34 ms
52,364 KB
testcase_34 AC 110 ms
105,408 KB
testcase_35 AC 106 ms
106,056 KB
testcase_36 AC 110 ms
106,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
N2 = 2 * N
S = [input() for _ in range(N2)]
C = [list(map(int, input().split())) for _ in range(N2)]
AS1 = []
AS2 = []

cnt = 0
for i in range(N2):
    for j in range(N):
        c1 = C[i][j]
        c2 = C[i][N2 - j - 1]
        AS1.append(c1)
        AS1.append(c2)
        AS2.append(c1 + c2)
        if S[i][j] == "#":
            cnt += 1
        if S[i][N2 - j - 1] == "#":
            cnt += 1

AS1.sort(reverse=True)
AS2.sort(reverse=True)
ans = sum(AS1[:cnt])
if cnt & 1 == 0:
    ans = max(ans, sum(AS2[:(cnt // 2)]) + K)
print(ans)
0