結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | htensai |
提出日時 | 2020-01-15 10:07:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 722 ms / 5,000 ms |
コード長 | 1,877 bytes |
コンパイル時間 | 2,254 ms |
コンパイル使用メモリ | 77,940 KB |
実行使用メモリ | 59,640 KB |
最終ジャッジ日時 | 2024-06-10 01:43:12 |
合計ジャッジ時間 | 11,000 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
53,916 KB |
testcase_01 | AC | 124 ms
53,844 KB |
testcase_02 | AC | 609 ms
59,592 KB |
testcase_03 | AC | 470 ms
59,176 KB |
testcase_04 | AC | 437 ms
59,188 KB |
testcase_05 | AC | 432 ms
59,336 KB |
testcase_06 | AC | 282 ms
57,448 KB |
testcase_07 | AC | 148 ms
54,480 KB |
testcase_08 | AC | 295 ms
57,552 KB |
testcase_09 | AC | 624 ms
59,640 KB |
testcase_10 | AC | 104 ms
52,768 KB |
testcase_11 | AC | 722 ms
59,336 KB |
testcase_12 | AC | 605 ms
59,616 KB |
testcase_13 | AC | 609 ms
59,468 KB |
testcase_14 | AC | 585 ms
59,184 KB |
testcase_15 | AC | 624 ms
59,216 KB |
testcase_16 | AC | 197 ms
56,472 KB |
testcase_17 | AC | 475 ms
59,144 KB |
testcase_18 | AC | 478 ms
59,180 KB |
testcase_19 | AC | 186 ms
56,472 KB |
ソースコード
import java.util.*; import java.math.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] arr = new int[n]; int[] enemies = new int[n]; for (int i = 0; i < n; i++) { arr[i] = sc.nextInt(); } for (int i = 0; i < n; i++) { enemies[i] = sc.nextInt(); } int min = Integer.MAX_VALUE; for (int i = 0; i < n; i++) { Team team = new Team(arr); int max = 0; for (int j = 0; j < n && max <= min; j++) { int x = enemies[(i + j) % n]; Member m = team.getMember(); m.add(x / 2); max = Math.max(max, m.count); team.add(m); } min = Math.min(min, max); } System.out.println(min); } static class Team { PriorityQueue<Member> queue = new PriorityQueue<>(); public Team (int[] arr) { for (int x : arr) { queue.add(new Member(x)); } } public Member getMember() { return queue.poll(); } public void add(Member m) { queue.add(m); } } static class Member implements Comparable<Member> { int level; int count; public Member(int level) { this.level = level; this.count = 0; } public void add(int added) { level += added; count++; } public int compareTo(Member another) { if (level == another.level) { return count - another.count; } else { return level - another.level; } } } }