結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー merlinmerlin
提出日時 2021-11-12 23:25:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,858 ms / 3,000 ms
コード長 1,766 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 78,388 KB
実行使用メモリ 58,628 KB
最終ジャッジ日時 2024-11-25 21:43:33
合計ジャッジ時間 37,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,032 KB
testcase_01 AC 49 ms
36,752 KB
testcase_02 AC 49 ms
36,976 KB
testcase_03 AC 51 ms
36,948 KB
testcase_04 AC 1,438 ms
57,792 KB
testcase_05 AC 1,828 ms
57,388 KB
testcase_06 AC 1,238 ms
58,256 KB
testcase_07 AC 50 ms
36,652 KB
testcase_08 AC 415 ms
56,680 KB
testcase_09 AC 449 ms
55,144 KB
testcase_10 AC 984 ms
52,100 KB
testcase_11 AC 664 ms
51,240 KB
testcase_12 AC 110 ms
41,156 KB
testcase_13 AC 1,092 ms
57,128 KB
testcase_14 AC 1,297 ms
57,572 KB
testcase_15 AC 1,022 ms
56,948 KB
testcase_16 AC 1,159 ms
51,072 KB
testcase_17 AC 635 ms
56,064 KB
testcase_18 AC 1,038 ms
54,452 KB
testcase_19 AC 379 ms
50,396 KB
testcase_20 AC 313 ms
49,020 KB
testcase_21 AC 599 ms
55,836 KB
testcase_22 AC 1,090 ms
57,760 KB
testcase_23 AC 1,610 ms
58,436 KB
testcase_24 AC 1,858 ms
57,516 KB
testcase_25 AC 1,570 ms
57,508 KB
testcase_26 AC 1,591 ms
58,332 KB
testcase_27 AC 1,747 ms
57,300 KB
testcase_28 AC 1,692 ms
58,260 KB
testcase_29 AC 1,751 ms
57,604 KB
testcase_30 AC 1,593 ms
58,628 KB
testcase_31 AC 1,672 ms
58,312 KB
testcase_32 AC 1,630 ms
56,328 KB
testcase_33 AC 53 ms
37,204 KB
testcase_34 AC 51 ms
36,660 KB
testcase_35 AC 53 ms
36,700 KB
testcase_36 AC 54 ms
37,108 KB
testcase_37 AC 50 ms
37,176 KB
testcase_38 AC 77 ms
38,104 KB
testcase_39 AC 92 ms
39,256 KB
testcase_40 AC 55 ms
37,320 KB
testcase_41 AC 77 ms
37,876 KB
testcase_42 AC 55 ms
37,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s[]=bu.readLine().split(" ");
        int n=Integer.parseInt(s[0]),a=Integer.parseInt(s[1]),b=Integer.parseInt(s[2]),x=Integer.parseInt(s[3]),y=Integer.parseInt(s[4]);
        int i,h[]=new int[n];
        s=bu.readLine().split(" ");
        for(i=0;i<n;i++) h[i]=Integer.parseInt(s[i]);

        int l=0,r=(int)1e9,mid,ans=r;
        while(l<=r)
        {
            mid=(l+r)>>1;
            if(possible(h,a,b,x,y,mid))
            {
                ans=mid;
                r=mid-1;
            }
            else l=mid+1;
        }
        System.out.println(ans);
    }

    static boolean possible(int en[],int a,int b,int x,int y,int k)
    {
        int i,n=en.length,h[]=new int[n];
        for(i=0;i<n;i++) h[i]=en[i]-k;

        PriorityQueue<int[]> pq=new PriorityQueue<>(new Comparator<int[]>() {
            @Override
            public int compare(int[] o1, int[] o2) {
                if(o1[0]<o2[0]) return 1;
                else if(o1[0]==o2[0]) return o1[1]>o2[1]?1:-1;
                else return -1;
            }});
        for(i=0;i<n;i++)
        if(h[i]>0) pq.add(new int[]{h[i],i});

        while(a-->0 && !pq.isEmpty())
        {
            int e[]=pq.poll();
            e[0]-=x;
            h[e[1]]-=x;
            if(e[0]>0) pq.add(e);
        }

        long del=1l*b*y;
        for(i=0;i<n;i++)
        {
            long t=Math.max(0,Math.min(h[i],del));
            h[i]-=t;
            del-=t;
            if(h[i]>0) return false;
        }
        return true;
    }
}
0