結果

問題 No.9 モンスターのレベル上げ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-02-12 00:55:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 795 ms / 5,000 ms
コード長 1,324 bytes
コンパイル時間 4,023 ms
コンパイル使用メモリ 83,860 KB
実行使用メモリ 48,608 KB
最終ジャッジ日時 2024-06-23 23:19:04
合計ジャッジ時間 14,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,628 KB
testcase_01 AC 158 ms
42,144 KB
testcase_02 AC 749 ms
48,560 KB
testcase_03 AC 634 ms
47,808 KB
testcase_04 AC 495 ms
47,944 KB
testcase_05 AC 495 ms
48,376 KB
testcase_06 AC 384 ms
47,424 KB
testcase_07 AC 189 ms
42,252 KB
testcase_08 AC 376 ms
47,384 KB
testcase_09 AC 795 ms
48,392 KB
testcase_10 AC 149 ms
41,828 KB
testcase_11 AC 735 ms
48,484 KB
testcase_12 AC 719 ms
48,468 KB
testcase_13 AC 687 ms
47,876 KB
testcase_14 AC 766 ms
48,608 KB
testcase_15 AC 758 ms
48,232 KB
testcase_16 AC 243 ms
43,276 KB
testcase_17 AC 572 ms
47,756 KB
testcase_18 AC 510 ms
47,588 KB
testcase_19 AC 236 ms
43,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No009 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		int n = in.nextInt();
		PriorityQueue<int[]> pQ = new PriorityQueue<>(new Comparator<int[]>(){
			public int compare(int[] a, int[] b) {
				if (a[0] != b[0]) return a[0] - b[0];
				return a[1] - b[1];
			}
		});
		for (int i=0; i<n; i++) {
			pQ.add(new int[]{in.nextInt(), 0});
		}

		int[] b = new int[n];
		for (int i=0; i<n; i++) {
			b[i] = in.nextInt();
		}

		int min = Integer.MAX_VALUE/2;
		for (int i=0; i<n; i++) {
			PriorityQueue<int[]> q = new PriorityQueue<>(pQ);
			int max = 0;
			for (int j=i, c=0; c<n; j=(j+1)%n, c++) {
				int[] x = q.poll();
				q.add(new int[]{x[0] + b[j]/2, x[1] + 1});
				max = Math.max(max, x[1] + 1);
			}
			min = Math.min(min, max);
		}

		out.println(min);
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		dump((end-start) + "ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0