結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,360 KB
testcase_01 AC 55 ms
50,148 KB
testcase_02 AC 55 ms
50,120 KB
testcase_03 AC 53 ms
50,112 KB
testcase_04 AC 53 ms
50,464 KB
testcase_05 AC 54 ms
50,584 KB
testcase_06 AC 52 ms
50,452 KB
testcase_07 AC 54 ms
50,664 KB
testcase_08 AC 54 ms
50,204 KB
testcase_09 AC 706 ms
72,424 KB
testcase_10 AC 668 ms
72,340 KB
testcase_11 AC 718 ms
72,352 KB
testcase_12 AC 693 ms
72,484 KB
testcase_13 AC 606 ms
72,048 KB
testcase_14 AC 692 ms
72,796 KB
testcase_15 AC 692 ms
72,276 KB
testcase_16 AC 674 ms
72,152 KB
testcase_17 AC 599 ms
72,308 KB
testcase_18 AC 597 ms
72,092 KB
testcase_19 AC 694 ms
72,412 KB
testcase_20 AC 689 ms
72,284 KB
testcase_21 AC 713 ms
72,356 KB
testcase_22 AC 673 ms
72,636 KB
testcase_23 AC 670 ms
72,344 KB
testcase_24 AC 633 ms
72,288 KB
testcase_25 AC 695 ms
72,648 KB
testcase_26 AC 667 ms
72,356 KB
testcase_27 AC 54 ms
50,540 KB
testcase_28 AC 456 ms
67,940 KB
testcase_29 AC 54 ms
50,524 KB
testcase_30 AC 421 ms
65,424 KB
testcase_31 AC 436 ms
65,544 KB
testcase_32 AC 450 ms
65,988 KB
testcase_33 AC 54 ms
50,360 KB
testcase_34 AC 525 ms
70,044 KB
testcase_35 AC 524 ms
66,460 KB
testcase_36 AC 597 ms
67,852 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