結果

問題 No.9 モンスターのレベル上げ
ユーザー こるこる
提出日時 2017-01-07 14:28:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 594 ms / 5,000 ms
コード長 1,601 bytes
コンパイル時間 3,799 ms
コンパイル使用メモリ 78,560 KB
実行使用メモリ 57,392 KB
最終ジャッジ日時 2024-06-23 23:48:22
合計ジャッジ時間 10,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,352 KB
testcase_01 AC 55 ms
50,508 KB
testcase_02 AC 536 ms
57,096 KB
testcase_03 AC 377 ms
57,128 KB
testcase_04 AC 291 ms
57,376 KB
testcase_05 AC 290 ms
57,184 KB
testcase_06 AC 174 ms
56,196 KB
testcase_07 AC 74 ms
50,656 KB
testcase_08 AC 193 ms
56,540 KB
testcase_09 AC 515 ms
56,680 KB
testcase_10 AC 54 ms
50,384 KB
testcase_11 AC 594 ms
57,024 KB
testcase_12 AC 553 ms
56,992 KB
testcase_13 AC 468 ms
57,012 KB
testcase_14 AC 510 ms
56,772 KB
testcase_15 AC 492 ms
57,064 KB
testcase_16 AC 106 ms
52,308 KB
testcase_17 AC 382 ms
57,224 KB
testcase_18 AC 366 ms
57,392 KB
testcase_19 AC 98 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class No009 {


    public static void main(String[] args) throws IOException {

        BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
        int n=Integer.parseInt(br.readLine());
        int[] a=new int[n];
        int[] b=new int[n];
        StringTokenizer st=new StringTokenizer(br.readLine());
        for(int i=0;i<n;i++){ a[i]=Integer.parseInt(st.nextToken()); }
        st=new StringTokenizer(br.readLine());
        for(int i=0;i<n;i++){ b[i]=Integer.parseInt(st.nextToken())/2; }
        int max=0;
        int min=1000000000;
        for(int i=0;i<n;i++){
            Queue<zako> q=new PriorityQueue(new my());
            for(int nn:a){ q.add(new zako(nn,0));  }
            max=0;
            for(int j=i;j<n+i;j++){
                zako z=q.poll();
                z.level+=b[j%n];
                z.times++;
                if(z.times>min) break;
                if(z.times>max) max=z.times;
                q.add(z);
            }min=Math.min(min,max);
        }System.out.println(min);
    }
    
}

class my implements Comparator{
    public int compare(Object obj1,Object obj2){
        zako z1=(zako)obj1;
        zako z2=(zako)obj2;
        
        if(z1.times+z1.level*100000>z2.times+z2.level*100000){
            return 1;
        }else if(z1.times+z1.level*100000<z2.times+z2.level*100000){
            return -1;
        }else{
            return 0;
        }
    }
}

class zako{
    int level;
    int times;
    zako(int level,int times){
        this.level=level;
        this.times=times;
    }
}
0