結果

問題 No.2094 Symmetry
ユーザー tentententen
提出日時 2022-10-11 09:51:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 767 ms / 2,000 ms
コード長 2,112 bytes
コンパイル時間 2,683 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 62,612 KB
最終ジャッジ日時 2024-06-25 05:38:59
合計ジャッジ時間 21,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,500 KB
testcase_01 AC 52 ms
36,956 KB
testcase_02 AC 55 ms
37,164 KB
testcase_03 AC 53 ms
36,952 KB
testcase_04 AC 53 ms
37,528 KB
testcase_05 AC 55 ms
36,956 KB
testcase_06 AC 53 ms
37,096 KB
testcase_07 AC 54 ms
37,268 KB
testcase_08 AC 54 ms
37,268 KB
testcase_09 AC 742 ms
62,532 KB
testcase_10 AC 685 ms
62,528 KB
testcase_11 AC 760 ms
62,016 KB
testcase_12 AC 725 ms
62,176 KB
testcase_13 AC 657 ms
60,608 KB
testcase_14 AC 723 ms
61,868 KB
testcase_15 AC 767 ms
62,532 KB
testcase_16 AC 673 ms
62,556 KB
testcase_17 AC 616 ms
60,416 KB
testcase_18 AC 665 ms
60,804 KB
testcase_19 AC 723 ms
62,416 KB
testcase_20 AC 720 ms
62,500 KB
testcase_21 AC 738 ms
62,508 KB
testcase_22 AC 709 ms
62,420 KB
testcase_23 AC 632 ms
60,864 KB
testcase_24 AC 667 ms
60,664 KB
testcase_25 AC 723 ms
62,612 KB
testcase_26 AC 650 ms
62,528 KB
testcase_27 AC 54 ms
37,344 KB
testcase_28 AC 418 ms
59,840 KB
testcase_29 AC 54 ms
37,360 KB
testcase_30 AC 445 ms
58,444 KB
testcase_31 AC 475 ms
59,548 KB
testcase_32 AC 510 ms
61,248 KB
testcase_33 AC 57 ms
37,372 KB
testcase_34 AC 562 ms
61,720 KB
testcase_35 AC 553 ms
60,420 KB
testcase_36 AC 647 ms
61,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long k = sc.nextLong();
        int count = 0;
        for (int i = 0; i < 2 * n; i++) {
            for (char c : sc.next().toCharArray()) {
                if (c == '#') {
                    count++;
                }
            }
        }
        PriorityQueue<Integer> first = new PriorityQueue<>();
        int[][] values = new int[2 * n][2 * n];
        for (int i = 0; i < 2 * n; i++) {
            for (int j = 0; j < 2 * n; j++) {
                values[i][j] = sc.nextInt();
                first.add(-values[i][j]);
            }
        }
        long sum1 = 0;
        for (int i = 0; i < count; i++) {
            sum1 -= first.poll();
        }
        if (count % 2 == 1) {
            System.out.println(sum1);
            return;
        }
        PriorityQueue<Integer> second = new PriorityQueue<>();
        for (int i = 0; i < 2 * n; i++) {
            for (int j = 0; j < n; j++) {
                second.add(-(values[i][j] + values[i][2 * n - j - 1]));
            }
        }
        long sum2 = 0;
        for (int i = 0; i < count / 2; i++) {
            sum2 -= second.poll();
        }
        System.out.println(Math.max(sum1, sum2 + k));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0