結果

問題 No.2094 Symmetry
ユーザー tnogamitnogami
提出日時 2022-10-08 14:42:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,352 KB
最終ジャッジ日時 2024-06-22 17:46:24
合計ジャッジ時間 10,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 326 ms
29,280 KB
testcase_10 AC 328 ms
29,272 KB
testcase_11 AC 336 ms
29,884 KB
testcase_12 AC 334 ms
29,412 KB
testcase_13 AC 318 ms
29,640 KB
testcase_14 AC 338 ms
29,744 KB
testcase_15 AC 358 ms
29,752 KB
testcase_16 AC 329 ms
29,624 KB
testcase_17 AC 342 ms
29,588 KB
testcase_18 AC 332 ms
29,264 KB
testcase_19 AC 334 ms
29,596 KB
testcase_20 AC 325 ms
29,780 KB
testcase_21 AC 345 ms
29,616 KB
testcase_22 AC 319 ms
29,220 KB
testcase_23 AC 327 ms
29,532 KB
testcase_24 AC 336 ms
29,648 KB
testcase_25 AC 324 ms
29,620 KB
testcase_26 AC 328 ms
29,628 KB
testcase_27 AC 27 ms
10,880 KB
testcase_28 AC 234 ms
30,336 KB
testcase_29 AC 26 ms
10,752 KB
testcase_30 AC 216 ms
30,208 KB
testcase_31 AC 247 ms
30,312 KB
testcase_32 AC 249 ms
30,352 KB
testcase_33 AC 25 ms
10,880 KB
testcase_34 AC 212 ms
25,648 KB
testcase_35 AC 218 ms
25,532 KB
testcase_36 AC 232 ms
29,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

black_ct = 0
for i in range(2*N):
    for j in range(2*N):
        if S[i][j] == "#":
            black_ct += 1
        C_1dim.append(C[i][j])

    for k in range(N):
        symetry_point.append(C[i][k]+C[i][-(k+1)])

C_1dim.sort()
symetry_point.sort()

ans = sum(C_1dim[-black_ct:])
if black_ct == 0:
    print(K)
elif black_ct%2 == 1:
    print(ans)
else:
    print(max(ans, sum(symetry_point[-(black_ct//2):])+K)) 
0