結果

問題 No.2094 Symmetry
ユーザー ygd.ygd.
提出日時 2022-10-07 23:20:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,245 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 109,344 KB
最終ジャッジ日時 2024-06-12 21:22:46
合計ジャッジ時間 7,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,256 KB
testcase_01 AC 50 ms
60,984 KB
testcase_02 AC 49 ms
61,896 KB
testcase_03 AC 50 ms
61,852 KB
testcase_04 AC 48 ms
61,184 KB
testcase_05 AC 49 ms
61,044 KB
testcase_06 AC 55 ms
61,960 KB
testcase_07 AC 50 ms
61,908 KB
testcase_08 AC 49 ms
61,248 KB
testcase_09 AC 199 ms
108,656 KB
testcase_10 AC 200 ms
108,660 KB
testcase_11 AC 201 ms
109,344 KB
testcase_12 AC 202 ms
109,076 KB
testcase_13 AC 165 ms
99,484 KB
testcase_14 AC 199 ms
108,880 KB
testcase_15 AC 201 ms
109,228 KB
testcase_16 AC 202 ms
109,000 KB
testcase_17 AC 169 ms
99,464 KB
testcase_18 AC 170 ms
99,144 KB
testcase_19 AC 200 ms
108,988 KB
testcase_20 AC 201 ms
109,320 KB
testcase_21 AC 201 ms
109,340 KB
testcase_22 AC 200 ms
108,316 KB
testcase_23 AC 168 ms
99,608 KB
testcase_24 AC 166 ms
99,740 KB
testcase_25 AC 199 ms
108,940 KB
testcase_26 AC 204 ms
108,656 KB
testcase_27 AC 49 ms
62,000 KB
testcase_28 AC 147 ms
104,672 KB
testcase_29 AC 47 ms
61,252 KB
testcase_30 AC 127 ms
104,532 KB
testcase_31 AC 129 ms
107,676 KB
testcase_32 AC 131 ms
107,484 KB
testcase_33 AC 49 ms
61,984 KB
testcase_34 AC 130 ms
103,200 KB
testcase_35 AC 137 ms
106,400 KB
testcase_36 AC 117 ms
99,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
import math
import bisect
#import itertools
#import random
from heapq import heapify, heappop, heappush
from collections import defaultdict 
#from collections import deque
import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    N,K = map(int,input().split())
    N2 = N * 2
    S = [str(input()) for _ in range(N2)]
    C = [list(map(int,input().split())) for _ in range(N2)]

    black = 0
    L = []
    for i in range(N2):
        for j in range(N2):
            L.append(C[i][j])
            if S[i][j] == '#':
                black += 1
    L.sort(reverse=True)
    ans = sum(L[:black])

    if black%2 == 1:
        print(ans);exit()
    
    L = []
    for i in range(N2):
        for j in range(N):
            temp = C[i][j] + C[i][N2-1-j]
            L.append(temp)
    L.sort(reverse=True)

    tans = sum(L[:(black//2)]) + K
    ans = max(ans, tans)

    print(ans)


if __name__ == '__main__':
    main()
0