結果

問題 No.9 モンスターのレベル上げ
ユーザー kou6839kou6839
提出日時 2014-11-09 16:33:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 878 ms / 5,000 ms
コード長 1,117 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 60,328 KB
最終ジャッジ日時 2024-06-23 22:03:10
合計ジャッジ時間 13,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,808 KB
testcase_01 AC 135 ms
54,244 KB
testcase_02 AC 852 ms
60,012 KB
testcase_03 AC 670 ms
59,916 KB
testcase_04 AC 558 ms
59,988 KB
testcase_05 AC 485 ms
59,892 KB
testcase_06 AC 342 ms
59,132 KB
testcase_07 AC 172 ms
54,392 KB
testcase_08 AC 379 ms
59,376 KB
testcase_09 AC 878 ms
60,328 KB
testcase_10 AC 134 ms
54,156 KB
testcase_11 AC 829 ms
59,960 KB
testcase_12 AC 786 ms
59,996 KB
testcase_13 AC 674 ms
59,220 KB
testcase_14 AC 804 ms
59,964 KB
testcase_15 AC 807 ms
59,984 KB
testcase_16 AC 224 ms
56,696 KB
testcase_17 AC 583 ms
60,116 KB
testcase_18 AC 578 ms
59,892 KB
testcase_19 AC 205 ms
56,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
class status implements Comparable<status>{
	int level;
	int count;
	status(int level,int count){
		this.level=level;
		this.count = count;
	}
	@Override
	public int compareTo(status arg0) {
		int value = this.level - arg0.level;
		if(value==0){
			return this.count-arg0.count;
		}
		return value;
	}
	
}
public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] party = new int[N];
		int[] enemy = new int[N];
		for(int i=0;i<N;i++){
			party[i]=sc.nextInt();
		}
		for(int i=0;i<N;i++){
			enemy[i]=sc.nextInt();
		}
		int ans=Integer.MAX_VALUE;
		for(int i=0;i<N;i++){
			Queue<status> queue= new PriorityQueue<status>();
			for(int j=0;j<N;j++){
				queue.add(new status(party[j],0));
			}
			for(int j=0;j<N;j++){
				status temp = queue.poll();
				temp.level+=enemy[(i+j)%N]/2;
				temp.count++;
				queue.add(temp);
			}
			int max=0;
			for(status a:queue){
				max=Math.max(max, a.count);
			}
			ans=Math.min(ans,max);
		}
		System.out.println(ans);
	}
}	
0