結果

問題 No.9 モンスターのレベル上げ
ユーザー tentententen
提出日時 2020-10-22 16:01:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 814 ms / 5,000 ms
コード長 1,553 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 80,724 KB
実行使用メモリ 48,272 KB
最終ジャッジ日時 2024-07-21 09:19:07
合計ジャッジ時間 13,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,500 KB
testcase_01 AC 138 ms
41,176 KB
testcase_02 AC 814 ms
48,140 KB
testcase_03 AC 691 ms
47,544 KB
testcase_04 AC 538 ms
47,964 KB
testcase_05 AC 457 ms
47,456 KB
testcase_06 AC 329 ms
46,840 KB
testcase_07 AC 171 ms
41,884 KB
testcase_08 AC 372 ms
47,712 KB
testcase_09 AC 806 ms
47,904 KB
testcase_10 AC 119 ms
40,320 KB
testcase_11 AC 813 ms
47,636 KB
testcase_12 AC 786 ms
48,272 KB
testcase_13 AC 686 ms
47,588 KB
testcase_14 AC 803 ms
47,404 KB
testcase_15 AC 739 ms
48,184 KB
testcase_16 AC 228 ms
43,412 KB
testcase_17 AC 569 ms
48,008 KB
testcase_18 AC 576 ms
47,896 KB
testcase_19 AC 209 ms
43,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] homes = new int[n];
        for (int i = 0; i < n; i++) {
            homes[i] = sc.nextInt();
        }
        int[] enemies = new int[n];
        for (int i = 0; i < n; i++) {
            enemies[i] = sc.nextInt();
        }
        int min = Integer.MAX_VALUE;
        for (int i = 0; i < n; i++) {
            int max = 0;
            PriorityQueue<Monster> queue = new PriorityQueue<>();
            for (int j = 0; j < n; j++) {
                queue.add(new Monster(homes[j]));
            }
            for (int j = 0; j < n; j++) {
                Monster m = queue.poll();
                m.count++;
                max = Math.max(max, m.count);
                m.value += enemies[(i + j) % n] / 2;
                queue.add(m);
            }
            min = Math.min(min, max);
        }
        System.out.println(min);
    }
    
    static class Monster implements Comparable<Monster> {
        int count;
        int value;
        
        public Monster(int value) {
            this.value = value;
        }
        
        public int compareTo(Monster another) {
            if (value == another.value) {
                return count - another.count;
            } else {
                return value - another.value;
            }
        }
        
        public String toString() {
            return "[" + count + ":" + value + "]";
        }
    }
}
0