結果

問題 No.9 モンスターのレベル上げ
ユーザー spaciaspacia
提出日時 2016-01-20 20:17:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 541 ms / 5,000 ms
コード長 1,298 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 79,676 KB
実行使用メモリ 46,456 KB
最終ジャッジ日時 2024-06-23 23:17:23
合計ジャッジ時間 7,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,376 KB
testcase_01 AC 53 ms
36,988 KB
testcase_02 AC 394 ms
46,176 KB
testcase_03 AC 320 ms
46,456 KB
testcase_04 AC 252 ms
45,164 KB
testcase_05 AC 255 ms
45,872 KB
testcase_06 AC 161 ms
43,916 KB
testcase_07 AC 61 ms
37,096 KB
testcase_08 AC 167 ms
44,872 KB
testcase_09 AC 374 ms
46,052 KB
testcase_10 AC 53 ms
37,000 KB
testcase_11 AC 428 ms
46,440 KB
testcase_12 AC 541 ms
46,104 KB
testcase_13 AC 160 ms
45,460 KB
testcase_14 AC 381 ms
45,532 KB
testcase_15 AC 376 ms
46,136 KB
testcase_16 AC 101 ms
39,980 KB
testcase_17 AC 315 ms
45,636 KB
testcase_18 AC 284 ms
46,284 KB
testcase_19 AC 95 ms
39,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	
	static int len;
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static int solve (int[] levelM , int[] levelE) {
		int ret = Integer.MAX_VALUE , maxI = -1;
		int[] bk = Arrays.copyOf(levelM , len);
		main:for (int i = 0; i < len; i++) {
			int win = 0;
			PriorityQueue<Integer> pq = new PriorityQueue<Integer>();
			for (int j = 0; j < len; j++) pq.add(bk[j]);
			for (int j = i; win++ < len; j++) {
				j %= len;
				int p = pq.poll();
				p += levelE[j] + 1;
				if ((p & 0xfff) >= ret) continue main;
				pq.add(p);
			}
			int max = 0;
			for (int j = 0; j < len; j++)
				max = Math.max(max , pq.poll() & 0xfff);
			ret = Math.min(ret , max);
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		len = Integer.parseInt(br.readLine());
		String[] line1 = br.readLine().split(" ");
		int[] levelM = new int[len];
		String[] line2 = br.readLine().split(" ");
		int[] levelE = new int[len];
		
		for (int i = 0; i < len; i++) {
			levelM[i] = Integer.parseInt(line1[i]) << 12;
			levelE[i] = (Integer.parseInt(line2[i]) >> 1) << 12;
		}
		
		out(solve(levelM , levelE));
	}
}
0