結果

問題 No.9 モンスターのレベル上げ
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-03 14:22:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 835 ms / 5,000 ms
コード長 2,114 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 78,676 KB
実行使用メモリ 49,480 KB
最終ジャッジ日時 2024-06-23 22:46:06
合計ジャッジ時間 12,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,284 KB
testcase_01 AC 52 ms
37,440 KB
testcase_02 AC 786 ms
48,204 KB
testcase_03 AC 721 ms
49,096 KB
testcase_04 AC 516 ms
48,952 KB
testcase_05 AC 378 ms
48,480 KB
testcase_06 AC 246 ms
46,820 KB
testcase_07 AC 89 ms
38,648 KB
testcase_08 AC 285 ms
46,904 KB
testcase_09 AC 835 ms
49,480 KB
testcase_10 AC 51 ms
37,252 KB
testcase_11 AC 766 ms
47,852 KB
testcase_12 AC 736 ms
48,756 KB
testcase_13 AC 725 ms
48,980 KB
testcase_14 AC 745 ms
48,040 KB
testcase_15 AC 785 ms
48,960 KB
testcase_16 AC 128 ms
41,048 KB
testcase_17 AC 622 ms
49,220 KB
testcase_18 AC 563 ms
48,596 KB
testcase_19 AC 120 ms
40,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int N = Integer.parseInt(br.readLine());

        String[] A = br.readLine().split(" ");
        String[] B = br.readLine().split(" ");

        int miniMax = Integer.MAX_VALUE;

        for (int i = 0; i < N; i++) {

            PriorityQueue<D> pq = new PriorityQueue();

            for (int j = 0; j < N; j++) {
                D a = new D(new int[]{Integer.parseInt(A[j]), 0});
                pq.add(a);
            }

            int tmpMax = 0;
            for (int j = 0; j < N; j++) {
                int enemy = i + j;
                if (enemy >= N) {
                    enemy = enemy - N;
                }

                D tmp = pq.poll();

                tmp.a[0] = tmp.a[0] + (Integer.parseInt(B[enemy]) / 2);
                tmp.a[1] = tmp.a[1] + 1;

                if (tmpMax < tmp.a[1]) {
                    tmpMax = tmp.a[1];
                }

                pq.add(tmp);
            }

            if (miniMax > tmpMax) {
                miniMax = tmpMax;
            }
        }

        System.out.println(miniMax);
    }

    static class D implements Comparable<D> {

        int[] a;

        public D(int[] a) {
            this.a = a;
        }

        //比較メソッド(データクラスを比較して-1, 0, 1を返すように記述する)
        public int compareTo(D b) {
            int no1 = a[0];
            int no2 = b.a[0];
            int no3 = a[1];
            int no4 = b.a[1];

            //こうすると社員番号の昇順でソートされる
            if (no1 > no2) {
                return 1;

            } else if (no1 == no2) {
                if (no3 > no4) {
                    return 1;

                } else if (no3 == no4) {
                    return 0;

                } else {
                    return -1;

                }

            } else {
                return -1;

            }
        }
    }
}
0