結果

問題 No.2094 Symmetry
ユーザー ygd.ygd.
提出日時 2022-10-07 23:14:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,238 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 109,404 KB
最終ジャッジ日時 2024-06-12 21:09:06
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,236 KB
testcase_01 AC 47 ms
61,836 KB
testcase_02 AC 46 ms
61,096 KB
testcase_03 AC 48 ms
61,368 KB
testcase_04 WA -
testcase_05 AC 46 ms
62,260 KB
testcase_06 WA -
testcase_07 AC 48 ms
62,484 KB
testcase_08 AC 48 ms
61,088 KB
testcase_09 AC 189 ms
108,424 KB
testcase_10 AC 192 ms
108,064 KB
testcase_11 AC 190 ms
109,204 KB
testcase_12 AC 191 ms
109,008 KB
testcase_13 WA -
testcase_14 AC 192 ms
108,816 KB
testcase_15 AC 190 ms
108,772 KB
testcase_16 AC 187 ms
108,588 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 193 ms
108,956 KB
testcase_20 AC 198 ms
109,164 KB
testcase_21 AC 192 ms
109,384 KB
testcase_22 AC 188 ms
107,804 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 199 ms
109,028 KB
testcase_26 AC 194 ms
108,516 KB
testcase_27 AC 49 ms
61,372 KB
testcase_28 AC 119 ms
104,892 KB
testcase_29 AC 46 ms
62,240 KB
testcase_30 AC 118 ms
104,568 KB
testcase_31 AC 127 ms
107,576 KB
testcase_32 AC 127 ms
107,288 KB
testcase_33 AC 48 ms
61,300 KB
testcase_34 AC 122 ms
103,088 KB
testcase_35 AC 124 ms
106,068 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    
    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