結果

問題 No.9 モンスターのレベル上げ
ユーザー scachescache
提出日時 2014-11-12 03:31:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,111 ms / 5,000 ms
コード長 1,934 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 79,140 KB
実行使用メモリ 60,844 KB
最終ジャッジ日時 2024-06-23 22:05:03
合計ジャッジ時間 15,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,264 KB
testcase_01 AC 127 ms
54,400 KB
testcase_02 AC 1,111 ms
60,552 KB
testcase_03 AC 906 ms
60,844 KB
testcase_04 AC 647 ms
60,464 KB
testcase_05 AC 541 ms
60,636 KB
testcase_06 AC 373 ms
59,840 KB
testcase_07 AC 160 ms
54,172 KB
testcase_08 AC 409 ms
60,444 KB
testcase_09 AC 1,076 ms
60,400 KB
testcase_10 AC 128 ms
54,200 KB
testcase_11 AC 1,040 ms
60,260 KB
testcase_12 AC 991 ms
60,124 KB
testcase_13 AC 740 ms
60,016 KB
testcase_14 AC 1,100 ms
60,396 KB
testcase_15 AC 1,010 ms
60,560 KB
testcase_16 AC 217 ms
58,792 KB
testcase_17 AC 751 ms
60,600 KB
testcase_18 AC 706 ms
60,688 KB
testcase_19 AC 207 ms
54,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Iterator;
import java.util.PriorityQueue;
import java.util.Scanner;
 
public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}
 
	public Main() {
		long startTime = System.currentTimeMillis();
		solve();
		long endTime = System.currentTimeMillis();
		// System.out.println((endTime-startTime)/1000.0);
 
	}
 
	public void solve() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
 
		Monster[] monsters = new Monster[n];
		for(int i=0;i<n;i++){
			monsters[i] = new Monster(sc.nextInt());
		}
 
		Monster[] enemies = new Monster[n];
		for(int i=0;i<n;i++){
//			enemies[i] = new Monster(sc.nextInt());
			enemies[i] = new Monster(sc.nextInt()/2);
		}
 
		int res = Integer.MAX_VALUE;
 
		for(int i=0;i<n;i++){
			PriorityQueue<Monster> cur = new PriorityQueue<Monster>(n, new MonsterComparator());
 
			// Monster[] newMonsters = monsters.clone();
			// for(int j=0;j<n;j++){
			// 	cur.offer(newMonsters[j]);
			// }
			for(int j=0;j<n;j++){
				cur.offer(new Monster(monsters[j].level));
			}
			for(int j=0;j<n;j++){
				Monster m = cur.poll();
//				m.level += enemies[(i+j)%n].level/2;
				m.level += enemies[(i+j)%n].level;
				m.encount++;
 
				cur.offer(m);
			}
 
			int maxEncount = 0;
			while(!cur.isEmpty()){
				maxEncount = Math.max(maxEncount, cur.poll().encount);
			}
			res = Math.min(res, maxEncount);
		}
 
		System.out.println(res);
 
	}
 
	private class Monster{
		public int level;
		public int encount;
 
		public Monster(int level){
			this.level = level;
			this.encount = 0;
		}
	}
 
	private class MonsterComparator implements java.util.Comparator<Monster>{
 
		@Override
		public int compare(Monster o1, Monster o2) {
			if(o1.level!=o2.level)
				return o1.level-o2.level;
			else
				return o1.encount-o2.encount;
		}
 
	}
}
 
0