結果

問題 No.2094 Symmetry
ユーザー FromBooskaFromBooska
提出日時 2023-06-02 22:27:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,244 KB
最終ジャッジ日時 2024-06-08 23:53:30
合計ジャッジ時間 8,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 177 ms
92,684 KB
testcase_10 AC 174 ms
92,564 KB
testcase_11 AC 176 ms
92,696 KB
testcase_12 AC 174 ms
92,316 KB
testcase_13 AC 173 ms
92,708 KB
testcase_14 AC 176 ms
92,316 KB
testcase_15 AC 175 ms
92,440 KB
testcase_16 AC 173 ms
92,432 KB
testcase_17 AC 173 ms
92,704 KB
testcase_18 AC 173 ms
92,836 KB
testcase_19 AC 176 ms
92,280 KB
testcase_20 AC 177 ms
92,320 KB
testcase_21 AC 171 ms
92,316 KB
testcase_22 AC 177 ms
92,440 KB
testcase_23 AC 177 ms
92,304 KB
testcase_24 AC 179 ms
92,296 KB
testcase_25 AC 178 ms
92,436 KB
testcase_26 AC 176 ms
92,304 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 102 ms
91,776 KB
testcase_29 AC 37 ms
51,968 KB
testcase_30 AC 103 ms
90,036 KB
testcase_31 AC 105 ms
92,288 KB
testcase_32 AC 108 ms
90,600 KB
testcase_33 AC 41 ms
51,840 KB
testcase_34 AC 116 ms
93,244 KB
testcase_35 AC 110 ms
91,060 KB
testcase_36 AC 117 ms
92,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 黒マスの数Bは変わらない
# 対称がなければ、最大値B個選べばいい
# 対称があるには、Bは偶数必要
# 対称となる中でベストB個を選ぶ
# 対称で調べる場合は、ペアごとのスコアを調べてそのベストB//2個を選べばいい
# 対称と非対称の大きい値が答え

N, K = map(int, input().split())
S = []
B = 0
for i in range(N*2):
    temp = input()
    S.append(temp)
    B += temp.count('#')

C = []
singles = []
pairs = []
for i in range(N*2):
    temp = list(map(int, input().split()))
    C.append(temp)
    singles.extend(temp)
    for j in range(N):
        calc = temp[j] + temp[-1-j]
        pairs.append(calc)
singles.sort(reverse = True)
pairs.sort(reverse = True)

if B%2 == 1:
    ans = sum(singles[:B])
else:
    ans1 = sum(singles[:B])
    ans2 = sum(pairs[:B//2])+K
    ans = max(ans1, ans2)
print(ans)







0