結果

問題 No.9 モンスターのレベル上げ
ユーザー mbanmban
提出日時 2017-04-11 20:55:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 680 ms / 5,000 ms
コード長 1,590 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 78,896 KB
実行使用メモリ 48,116 KB
最終ジャッジ日時 2024-06-23 23:56:51
合計ジャッジ時間 11,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,544 KB
testcase_01 AC 126 ms
41,564 KB
testcase_02 AC 496 ms
46,864 KB
testcase_03 AC 386 ms
47,284 KB
testcase_04 AC 385 ms
46,812 KB
testcase_05 AC 352 ms
46,776 KB
testcase_06 AC 278 ms
46,180 KB
testcase_07 AC 144 ms
41,472 KB
testcase_08 AC 256 ms
45,780 KB
testcase_09 AC 540 ms
48,116 KB
testcase_10 AC 127 ms
41,500 KB
testcase_11 AC 541 ms
47,528 KB
testcase_12 AC 680 ms
47,748 KB
testcase_13 AC 222 ms
46,440 KB
testcase_14 AC 534 ms
47,888 KB
testcase_15 AC 531 ms
47,384 KB
testcase_16 AC 192 ms
42,892 KB
testcase_17 AC 448 ms
46,860 KB
testcase_18 AC 409 ms
46,948 KB
testcase_19 AC 180 ms
42,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Program {
	public static void main(String[] args) {
		new Magatro().solve();
	}
}

class Magatro {
	private int n;
	private int[] a, b;
	private PriorityQueue<Mon> priorityQueue;
	private int anser = Integer.MAX_VALUE;

	private void scan() {
		Scanner scanner = new Scanner(System.in);
		n = scanner.nextInt();
		a = new int[n];
		b = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = scanner.nextInt();
		}
		for (int i = 0; i < n; i++) {
			b[i] = scanner.nextInt();
		}
	}

	private void battle(int start) {
		int result = -1;
		PriorityQueue<Mon> copyPq = new PriorityQueue<Mon>(priorityQueue);
		for (int i = 0; i < n; i++) {
			int index = (i+start)%n;
			Mon mon = copyPq.poll();
			Mon mon2 = new Mon(mon.level+b[index]/2,mon.battle+1);
			result = Math.max(mon2.battle, result);
			if(anser<=result)return;
			copyPq.add(mon2);
		}
		anser = result;
	}

	public void solve() {
		scan();

		priorityQueue = new PriorityQueue<>(1, new MyComparator());
		for (int i : a) {
			priorityQueue.add(new Mon(i));
		}
		
		for(int i=0;i<n;i++){
			battle(i);
		}
		System.out.println(anser);
	}
}

class MyComparator implements Comparator<Mon> {
	public int compare(Mon a, Mon b) {
		if (a.level != b.level) {
			return Integer.compare(a.level, b.level);
		} else {
			return Integer.compare(a.battle, b.battle);
		}
	}
}

class Mon {
	public int level;
	public int battle;

	public Mon(int l) {
		level = l;
		battle = 0;
	}
	public Mon (int l,int b) {
		level = l;
		battle = b;
	}
}
0