結果

問題 No.9 モンスターのレベル上げ
ユーザー リチウムリチウム
提出日時 2014-11-18 22:15:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 866 ms / 5,000 ms
コード長 1,176 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 60,512 KB
最終ジャッジ日時 2024-06-23 22:05:52
合計ジャッジ時間 13,629 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,140 KB
testcase_01 AC 136 ms
54,120 KB
testcase_02 AC 806 ms
60,000 KB
testcase_03 AC 732 ms
60,512 KB
testcase_04 AC 551 ms
60,264 KB
testcase_05 AC 479 ms
60,288 KB
testcase_06 AC 346 ms
59,156 KB
testcase_07 AC 172 ms
54,276 KB
testcase_08 AC 365 ms
59,744 KB
testcase_09 AC 832 ms
60,080 KB
testcase_10 AC 136 ms
54,284 KB
testcase_11 AC 866 ms
60,132 KB
testcase_12 AC 804 ms
60,216 KB
testcase_13 AC 755 ms
60,104 KB
testcase_14 AC 864 ms
60,116 KB
testcase_15 AC 818 ms
60,296 KB
testcase_16 AC 223 ms
56,464 KB
testcase_17 AC 622 ms
60,176 KB
testcase_18 AC 574 ms
60,040 KB
testcase_19 AC 198 ms
56,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int friend[]=new int[n];
		int enemy[]=new int[n];
		for(int i=0;i<n;i++){
			friend[i]=sc.nextInt();
		}
		for(int i=0;i<n;i++){
			enemy[i]=sc.nextInt();
		}
		int ans=Integer.MAX_VALUE;
		for(int i=0;i<n;i++){
			PriorityQueue<conect>Q=new PriorityQueue<>();
			int times[]=new int[n];
			for(int j=0;j<n;j++){
				Q.add(new conect(friend[j],0,j));
			}
			for(int j=0;j<n;j++){
				int Enum=j+i;
				if(j+i>=n)Enum-=n;
				conect x=Q.poll();
				int y=x.l+enemy[Enum]/2;
				times[x.n]++;
				Q.add(new conect(y,times[x.n],x.n));
			}
			int ansk=0;
			for(int j=0;j<n;j++){
				ansk=Math.max(times[j],ansk);
			}
			ans=Math.min(ansk,ans);
		}
		System.out.println(ans);
	}}

class conect implements Comparable<conect> {
	int l;
	int t;
	int n;

	public conect(int l, int t, int n) {
		this.l = l;
		this.t = t;
		this.n = n;
	}

	public conect() {
	}

	@Override
	public int compareTo(conect o) {
		if(this.l!=o.l)	return this.l - o.l;
		return this.t-o.t;
	}

}
0