結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,248 KB
testcase_01 AC 52 ms
37,284 KB
testcase_02 AC 482 ms
45,884 KB
testcase_03 AC 271 ms
45,872 KB
testcase_04 AC 279 ms
45,672 KB
testcase_05 AC 254 ms
45,268 KB
testcase_06 AC 157 ms
43,788 KB
testcase_07 AC 64 ms
37,780 KB
testcase_08 AC 176 ms
44,980 KB
testcase_09 AC 366 ms
46,428 KB
testcase_10 AC 53 ms
36,860 KB
testcase_11 AC 435 ms
46,292 KB
testcase_12 AC 556 ms
46,248 KB
testcase_13 AC 158 ms
45,464 KB
testcase_14 AC 375 ms
45,780 KB
testcase_15 AC 383 ms
45,868 KB
testcase_16 AC 101 ms
39,848 KB
testcase_17 AC 299 ms
45,376 KB
testcase_18 AC 260 ms
45,092 KB
testcase_19 AC 88 ms
39,656 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[] sort (int[] a) {
		for (int i = 1; i < len; i++) {
			if (a[0] > a[i]) {
				int tmp = a[0];
				a[0] = a[i];
				a[i] = tmp;
			}
		}
		return a;
	}
	
	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