結果

問題 No.957 植林
ユーザー htensaihtensai
提出日時 2020-02-12 11:33:54
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 2,538 bytes
コンパイル時間 2,717 ms
コンパイル使用メモリ 80,552 KB
実行使用メモリ 61,300 KB
最終ジャッジ日時 2024-10-03 05:31:26
合計ジャッジ時間 32,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,404 KB
testcase_01 AC 129 ms
54,136 KB
testcase_02 AC 134 ms
54,064 KB
testcase_03 AC 663 ms
59,324 KB
testcase_04 AC 640 ms
59,560 KB
testcase_05 AC 687 ms
59,628 KB
testcase_06 AC 659 ms
59,604 KB
testcase_07 AC 643 ms
59,316 KB
testcase_08 AC 642 ms
59,672 KB
testcase_09 AC 650 ms
59,736 KB
testcase_10 AC 680 ms
59,684 KB
testcase_11 AC 675 ms
59,680 KB
testcase_12 AC 653 ms
59,456 KB
testcase_13 AC 636 ms
59,288 KB
testcase_14 AC 666 ms
59,600 KB
testcase_15 AC 686 ms
59,456 KB
testcase_16 AC 612 ms
59,376 KB
testcase_17 AC 645 ms
59,784 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 585 ms
59,264 KB
testcase_42 AC 574 ms
59,368 KB
testcase_43 AC 723 ms
61,300 KB
testcase_44 AC 727 ms
60,880 KB
testcase_45 AC 134 ms
53,872 KB
testcase_46 AC 135 ms
54,152 KB
testcase_47 AC 138 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt();
        int w = sc.nextInt();
        int[][] field = new int[h][w];
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                field[i][j] = sc.nextInt();
            }
        }
        int[] rows = new int[h];
        PriorityQueue<Type> queue = new PriorityQueue<>();
        PriorityQueue<Type> next = new PriorityQueue<>();
        for (int i = 0; i < h; i++) {
            rows[i] = sc.nextInt();
            long value = rows[i];
            for (int j = 0; j < w; j++) {
                value -= field[i][j];
            }
            queue.add(new Type(true, i, value));
        }
        int[] cals = new int[w];
        for (int i = 0; i < w; i++) {
            cals[i] = sc.nextInt();
            long value = cals[i];
            for (int j = 0; j < h; j++) {
                value -= field[j][i];
            }
            queue.add(new Type(false, i, value));
        }
        long total = 0;
        long max = 0;
        while (queue.size() > 0) {
            Type target = queue.poll();
            total += target.value;
            max = Math.max(max, total);
            while (queue.size() > 0) {
                Type tmp = queue.poll();
                if (target.isRow != tmp.isRow) {
                    if (target.isRow) {
                        tmp.value += field[target.idx][tmp.idx];
                    } else {
                        tmp.value += field[tmp.idx][target.idx];
                    }
                }
                next.add(tmp);
            }
            PriorityQueue<Type> t = next;
            next = queue;
            queue = t;
        }
        System.out.println(max);
    }
    
    static class Type implements Comparable<Type> {
        boolean isRow;
        int idx;
        long value;
        
        public Type(boolean isRow, int idx, long value) {
            this.isRow = isRow;
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Type another) {
            if (value < another.value) {
                return 1;
            } else if (value == another.value) {
                return 0;
            } else {
                return -1;
            }
        }
        
        public String toString() {
            return isRow + ":" + idx + ":" + value;
        }
   }
}
0