結果

問題 No.2094 Symmetry
ユーザー AkariAkari
提出日時 2022-10-07 22:09:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,864 KB
最終ジャッジ日時 2024-06-12 18:45:42
合計ジャッジ時間 22,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
43,852 KB
testcase_01 AC 500 ms
43,464 KB
testcase_02 AC 490 ms
43,556 KB
testcase_03 AC 501 ms
43,704 KB
testcase_04 AC 492 ms
43,704 KB
testcase_05 AC 500 ms
43,856 KB
testcase_06 AC 497 ms
44,100 KB
testcase_07 AC 502 ms
43,576 KB
testcase_08 AC 504 ms
43,464 KB
testcase_09 AC 571 ms
47,820 KB
testcase_10 AC 565 ms
46,964 KB
testcase_11 AC 567 ms
51,660 KB
testcase_12 AC 568 ms
49,868 KB
testcase_13 AC 547 ms
47,192 KB
testcase_14 AC 567 ms
49,364 KB
testcase_15 AC 571 ms
50,512 KB
testcase_16 AC 562 ms
47,184 KB
testcase_17 AC 551 ms
46,932 KB
testcase_18 AC 567 ms
48,984 KB
testcase_19 AC 575 ms
49,616 KB
testcase_20 AC 572 ms
49,368 KB
testcase_21 AC 580 ms
49,600 KB
testcase_22 AC 566 ms
47,704 KB
testcase_23 AC 549 ms
49,368 KB
testcase_24 AC 563 ms
50,004 KB
testcase_25 AC 563 ms
47,572 KB
testcase_26 AC 570 ms
47,440 KB
testcase_27 AC 497 ms
43,960 KB
testcase_28 WA -
testcase_29 AC 500 ms
43,592 KB
testcase_30 WA -
testcase_31 AC 559 ms
54,220 KB
testcase_32 AC 554 ms
54,864 KB
testcase_33 AC 495 ms
43,940 KB
testcase_34 AC 527 ms
46,552 KB
testcase_35 AC 533 ms
46,556 KB
testcase_36 AC 541 ms
53,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np


def main():
    buf = sys.stdin.buffer
    n, k = map(int, buf.readline().split())
    n2 = 2 * n
    S = np.empty((n2, n2), np.bool_)
    for i in range(n2): S[i] = np.frombuffer(buf.readline().rstrip(), 'S1') == b'#'
    C = np.empty_like(S, np.int64)
    for i in range(n2):
        C[i] = np.fromstring(buf.readline().rstrip().decode(), np.int64, sep=' ')
    m = np.count_nonzero(S)

    def f(A, x):
        return sum(np.sort(A.ravel())[-x:].tolist())

    ans = f(C, m)
    if ~m & 1:
        ans = max(ans, f(C[:, :n] + np.fliplr(C[:, n:]), m // 2) + k)
    print(ans)



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