結果
問題 | No.9 モンスターのレベル上げ |
ユーザー |
![]() |
提出日時 | 2019-04-18 09:48:20 |
言語 | Java17 (openjdk 17.0.1) |
結果 |
AC
|
実行時間 | 1,936 ms / 5,000 ms |
コード長 | 1,499 bytes |
コンパイル時間 | 2,536 ms |
使用メモリ | 50,176 KB |
最終ジャッジ日時 | 2022-11-21 17:27:27 |
合計ジャッジ時間 | 23,974 ms |
ジャッジサーバーID (参考情報) |
judge11 / judge15 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
38,252 KB |
testcase_01 | AC | 108 ms
38,176 KB |
testcase_02 | AC | 1,839 ms
46,192 KB |
testcase_03 | AC | 1,524 ms
46,504 KB |
testcase_04 | AC | 971 ms
46,176 KB |
testcase_05 | AC | 765 ms
46,124 KB |
testcase_06 | AC | 519 ms
47,024 KB |
testcase_07 | AC | 196 ms
43,828 KB |
testcase_08 | AC | 524 ms
45,928 KB |
testcase_09 | AC | 1,767 ms
47,016 KB |
testcase_10 | AC | 103 ms
38,032 KB |
testcase_11 | AC | 1,750 ms
46,244 KB |
testcase_12 | AC | 1,936 ms
46,176 KB |
testcase_13 | AC | 1,526 ms
50,176 KB |
testcase_14 | AC | 1,776 ms
46,064 KB |
testcase_15 | AC | 1,758 ms
47,736 KB |
testcase_16 | AC | 261 ms
44,504 KB |
testcase_17 | AC | 1,226 ms
47,736 KB |
testcase_18 | AC | 1,054 ms
46,172 KB |
testcase_19 | AC | 248 ms
44,624 KB |
ソースコード
import java.util.*; import java.util.stream.*; import static java.lang.Math.*; public class Main{ public static void main(String... args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int[] a=new int[n]; for(int i=0;i<n;i++){ a[i]=sc.nextInt(); } int[] b=new int[n]; for(int i=0;i<n;i++){ b[i]=sc.nextInt(); } int min=Integer.MAX_VALUE; for(int s=0;s<n;s++){ PriorityQueue<Pair> pq=new PriorityQueue<>(Comparator.comparing((Pair p)->p.x).thenComparing(p->p.y)); for(int i=0;i<n;i++){ pq.add(new Pair(a[i],0)); } //put(pq); for(int j=0;j<n;j++){ int index=(s+j)%n; Pair p=pq.poll(); p.x+=b[index]/2; p.y++; pq.add(p); } //put(pq); int max=Integer.MIN_VALUE; while(pq.size()>0){ max=max(max,pq.poll().y); } min=min(min,max); } put(min); } public static class Pair{ int x,y; Pair(int x,int y){ this.x=x; this.y=y; } @Override public String toString(){ return String.format("Pair(%d,%d)",x,y); } } public static void print(Object object){ System.out.print(object); } public static void put(Object object) { System.out.println(object); } public static void put(){ System.out.println(); } public static void print(String format,Object... args){ System.out.print(String.format(format,args)); } public static void put(String format,Object... args) { System.out.println(String.format(format,args)); } }