結果

問題 No.2094 Symmetry
ユーザー tenten
提出日時 2023-04-19 17:47:20
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

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