結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | yuki2006 |
提出日時 | 2014-10-11 03:34:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 925 ms / 5,000 ms |
コード長 | 1,906 bytes |
コンパイル時間 | 3,535 ms |
コンパイル使用メモリ | 79,676 KB |
実行使用メモリ | 60,624 KB |
最終ジャッジ日時 | 2024-06-23 21:59:28 |
合計ジャッジ時間 | 15,317 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,008 KB |
testcase_01 | AC | 128 ms
54,292 KB |
testcase_02 | AC | 925 ms
60,308 KB |
testcase_03 | AC | 704 ms
59,884 KB |
testcase_04 | AC | 594 ms
60,512 KB |
testcase_05 | AC | 491 ms
60,272 KB |
testcase_06 | AC | 351 ms
59,936 KB |
testcase_07 | AC | 162 ms
54,336 KB |
testcase_08 | AC | 371 ms
59,768 KB |
testcase_09 | AC | 888 ms
60,356 KB |
testcase_10 | AC | 132 ms
54,776 KB |
testcase_11 | AC | 890 ms
60,228 KB |
testcase_12 | AC | 875 ms
60,624 KB |
testcase_13 | AC | 756 ms
60,240 KB |
testcase_14 | AC | 858 ms
60,376 KB |
testcase_15 | AC | 907 ms
60,528 KB |
testcase_16 | AC | 210 ms
56,620 KB |
testcase_17 | AC | 671 ms
60,164 KB |
testcase_18 | AC | 665 ms
60,472 KB |
testcase_19 | AC | 202 ms
54,820 KB |
ソースコード
import java.util.Date; import java.util.PriorityQueue; import java.util.Scanner; public class Yuki009 { static class Tuple implements Comparable<Tuple> { int level; int count; Tuple(int level, int count) { this.level = level; this.count = count; } @Override public int compareTo(Tuple o) { int value = Integer.compare(level, o.level); if (value == 0) { return Integer.compare(count, o.count); } return value; } } static int N = 1500; public static void main(String[] args) { Scanner scanner = new Scanner(System.in); N = scanner.nextInt(); int[] party = new int[N + 1]; int[] enemy = new int[N + 1]; long exec_time = new Date().getTime(); for (int i = 0; i < N; i++) { party[i] = scanner.nextInt(); } for (int i = 0; i < N; i++) { enemy[i] = scanner.nextInt(); } int min = N; for (int i = 0; i < N; i++) { PriorityQueue<Tuple> queue = new PriorityQueue<Tuple>(N); for (int k = 0; k < N; k++) { queue.add(new Tuple(party[k], 0)); } for (int j = 0; j < N; j++) { Tuple t = queue.poll(); t.level += enemy[(i + j) % N] / 2; t.count++; queue.add(t); } //最後に一番試合数が要素を見つけるので配列に起こす。 Tuple[] tuples = queue.toArray(new Tuple[0]); int max = 0; for (Tuple t : tuples) { max = Math.max(max, t.count); } min = Math.min(min, max); } System.out.println(min); } }