結果

問題 No.9 モンスターのレベル上げ
ユーザー nCk_cvnCk_cv
提出日時 2016-02-18 15:38:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 850 ms / 5,000 ms
コード長 1,051 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 79,120 KB
実行使用メモリ 59,592 KB
最終ジャッジ日時 2024-06-23 23:19:52
合計ジャッジ時間 13,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,016 KB
testcase_01 AC 137 ms
54,208 KB
testcase_02 AC 778 ms
59,344 KB
testcase_03 AC 667 ms
59,136 KB
testcase_04 AC 594 ms
59,564 KB
testcase_05 AC 416 ms
59,200 KB
testcase_06 AC 328 ms
58,352 KB
testcase_07 AC 171 ms
54,852 KB
testcase_08 AC 354 ms
58,684 KB
testcase_09 AC 785 ms
59,316 KB
testcase_10 AC 134 ms
54,184 KB
testcase_11 AC 808 ms
59,308 KB
testcase_12 AC 759 ms
59,172 KB
testcase_13 AC 665 ms
59,056 KB
testcase_14 AC 811 ms
59,588 KB
testcase_15 AC 850 ms
59,592 KB
testcase_16 AC 221 ms
56,580 KB
testcase_17 AC 590 ms
59,364 KB
testcase_18 AC 556 ms
59,460 KB
testcase_19 AC 210 ms
56,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	static int[] vx = {1,0,-1,0};
	static int[] vy = {0,1,0,-1};
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		int[] b = new int[n];
		for(int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		for(int i = 0; i < n; i++) {
			b[i] = sc.nextInt()/2;
		}
		int min = 2 << 29;
		for(int i = 0; i < n; i++) {
			PriorityQueue<Data> p = new PriorityQueue<Data>();
			for(int j = 0; j < n; j++) {
				p.add(new Data(a[j],0));
			}
			int max = 0;
			for(int j = 0; j < n; j++) {
				Data tmp = p.poll();
				tmp.b++;
				tmp.a += b[(j + i) % n];
				p.add(tmp);
				max = Math.max(max, tmp.b);
			}
			min = Math.min(min,max);
		}
		System.out.println(min);
		
	}
	static class Data implements Comparable<Data>{
		int a;
		int b;
		Data(int c, int d) {
			a = c;
			b = d;
		}
		@Override
		public int compareTo(Data o) {
			if(o.a == this.a) return this.b - o.b;
			return this.a - o.a;
		}
		
	}
}
0