結果

問題 No.2094 Symmetry
ユーザー ygd.ygd.
提出日時 2022-10-07 23:09:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,341 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 104,780 KB
最終ジャッジ日時 2024-06-12 20:57:56
合計ジャッジ時間 8,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,556 KB
testcase_01 AC 52 ms
61,100 KB
testcase_02 AC 49 ms
61,836 KB
testcase_03 AC 49 ms
62,480 KB
testcase_04 WA -
testcase_05 AC 50 ms
62,464 KB
testcase_06 WA -
testcase_07 AC 50 ms
61,956 KB
testcase_08 AC 50 ms
61,820 KB
testcase_09 AC 256 ms
95,492 KB
testcase_10 AC 245 ms
95,428 KB
testcase_11 AC 289 ms
97,012 KB
testcase_12 AC 261 ms
96,708 KB
testcase_13 WA -
testcase_14 AC 262 ms
95,428 KB
testcase_15 AC 274 ms
96,280 KB
testcase_16 AC 245 ms
94,920 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 264 ms
96,436 KB
testcase_20 AC 264 ms
96,252 KB
testcase_21 AC 267 ms
96,744 KB
testcase_22 AC 249 ms
94,812 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 244 ms
95,396 KB
testcase_26 AC 246 ms
95,380 KB
testcase_27 AC 48 ms
61,044 KB
testcase_28 AC 126 ms
104,780 KB
testcase_29 AC 54 ms
61,864 KB
testcase_30 AC 131 ms
104,712 KB
testcase_31 AC 175 ms
96,876 KB
testcase_32 AC 178 ms
97,012 KB
testcase_33 AC 50 ms
61,508 KB
testcase_34 AC 200 ms
92,528 KB
testcase_35 AC 192 ms
95,084 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
    PQ = []
    for i in range(N2):
        for j in range(N2):
            heappush(PQ,-C[i][j])
            if S[i][j] == '#':
                black += 1
    
    nokori = black
    ans = 0
    while nokori > 0:
        v = heappop(PQ)
        ans -= v #負の値が入っている
        nokori -= 1

    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