結果

問題 No.9 モンスターのレベル上げ
ユーザー uafr_csuafr_cs
提出日時 2015-09-03 03:35:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,297 ms / 5,000 ms
コード長 1,601 bytes
コンパイル時間 2,605 ms
コンパイル使用メモリ 79,068 KB
実行使用メモリ 61,272 KB
最終ジャッジ日時 2024-06-23 23:05:39
合計ジャッジ時間 17,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,512 KB
testcase_01 AC 134 ms
54,184 KB
testcase_02 AC 1,297 ms
60,688 KB
testcase_03 AC 921 ms
60,624 KB
testcase_04 AC 672 ms
60,832 KB
testcase_05 AC 602 ms
61,012 KB
testcase_06 AC 437 ms
60,272 KB
testcase_07 AC 183 ms
54,368 KB
testcase_08 AC 442 ms
60,528 KB
testcase_09 AC 1,236 ms
60,952 KB
testcase_10 AC 133 ms
54,000 KB
testcase_11 AC 1,155 ms
60,768 KB
testcase_12 AC 1,165 ms
60,668 KB
testcase_13 AC 838 ms
61,272 KB
testcase_14 AC 1,255 ms
60,620 KB
testcase_15 AC 1,154 ms
60,964 KB
testcase_16 AC 230 ms
56,628 KB
testcase_17 AC 906 ms
60,884 KB
testcase_18 AC 791 ms
60,492 KB
testcase_19 AC 213 ms
56,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static class Status implements Comparable<Status> {
		int level, count;
		
		public Status(int level, int count) {
			super();
			this.level = level;
			this.count = count;
		}
		
		@Override
		public int compareTo(Status o) {
			if(Integer.compare(this.level, o.level) != 0){
				return Integer.compare(this.level, o.level);
			}else{
				return Integer.compare(this.count, o.count);
			}
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int[] As = new int[N];
		int[] Bs = new int[N];
		
		for(int i = 0; i < N; i++){
			As[i] = sc.nextInt();
		}
		
		for(int i = 0; i < N; i++){
			Bs[i] = sc.nextInt();
		}
		
		int answer = Integer.MAX_VALUE;
		for(int B_start = 0; B_start < N; B_start++){
			
			PriorityQueue<Status> queue = new PriorityQueue<Status>();
			for(int i = 0; i < N; i++){
				queue.add(new Status(As[i], 0));
			}
			
			for(int i = 0; i < N; i++){
				final int B_battle = (B_start + i) % N;
				
				final Status A_battle = queue.poll();
				//System.out.println(B_start + " " + A_battle.level + " " + A_battle.count);
				
				A_battle.count++;
				A_battle.level += Bs[B_battle] / 2;
				queue.add(A_battle);
			}
			
			int max = Integer.MIN_VALUE;
			while(!queue.isEmpty()){
				max = Math.max(max, queue.poll().count);
			}
			
			answer = Math.min(answer, max);
		}
		
		System.out.println(answer);
	}

}
0