結果

問題 No.2094 Symmetry
ユーザー tentententen
提出日時 2023-04-19 17:47:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 2,526 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 84,784 KB
実行使用メモリ 61,336 KB
最終ジャッジ日時 2024-10-14 18:30:12
合計ジャッジ時間 19,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,792 KB
testcase_01 AC 46 ms
36,792 KB
testcase_02 AC 47 ms
36,588 KB
testcase_03 AC 48 ms
36,880 KB
testcase_04 AC 45 ms
36,456 KB
testcase_05 AC 46 ms
36,792 KB
testcase_06 AC 46 ms
36,836 KB
testcase_07 AC 45 ms
36,796 KB
testcase_08 AC 46 ms
36,672 KB
testcase_09 AC 616 ms
60,888 KB
testcase_10 AC 556 ms
61,304 KB
testcase_11 AC 626 ms
61,140 KB
testcase_12 AC 574 ms
60,828 KB
testcase_13 AC 519 ms
60,508 KB
testcase_14 AC 600 ms
61,060 KB
testcase_15 AC 626 ms
61,336 KB
testcase_16 AC 573 ms
61,100 KB
testcase_17 AC 530 ms
60,768 KB
testcase_18 AC 546 ms
60,664 KB
testcase_19 AC 606 ms
60,804 KB
testcase_20 AC 601 ms
60,856 KB
testcase_21 AC 620 ms
61,184 KB
testcase_22 AC 576 ms
60,800 KB
testcase_23 AC 563 ms
60,840 KB
testcase_24 AC 558 ms
60,864 KB
testcase_25 AC 590 ms
60,748 KB
testcase_26 AC 583 ms
60,812 KB
testcase_27 AC 48 ms
36,948 KB
testcase_28 AC 372 ms
54,292 KB
testcase_29 AC 45 ms
36,728 KB
testcase_30 AC 366 ms
54,124 KB
testcase_31 AC 421 ms
55,340 KB
testcase_32 AC 435 ms
55,408 KB
testcase_33 AC 49 ms
36,792 KB
testcase_34 AC 470 ms
59,284 KB
testcase_35 AC 474 ms
56,428 KB
testcase_36 AC 544 ms
58,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 < n * 2; i++) {
            for (char c : sc.next().toCharArray()) {
                if (c == '#') {
                    count++;
                }
            }
        }
        int[] syms = new int[n * n * 2];
        PriorityQueue<Integer> queue = new PriorityQueue<>();
        for (int i = 0; i < 2 * n; i++) {
            for (int j = 0; j < 2 * n; j++) {
                int x = sc.nextInt();
                queue.add(-x);
                if (j >= n) {
                    syms[i * n + 2 * n - j - 1] -= x;
                } else {
                    syms[i * n + j] -= x;
                }
            } 
        }
        long ans = 0;
        for (int i = 0; i < count; i++) {
            ans -= queue.poll();
        }
        if (count % 2 == 0) {
            long sum = 0;
            Arrays.sort(syms);
            for (int i = 0; i < count / 2; i++) {
                sum -= syms[i];
            }
            ans = Math.max(ans, sum + k);
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0