結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,852 KB
testcase_01 AC 46 ms
37,276 KB
testcase_02 AC 45 ms
37,180 KB
testcase_03 AC 47 ms
36,852 KB
testcase_04 AC 1,373 ms
57,964 KB
testcase_05 AC 1,762 ms
57,684 KB
testcase_06 AC 1,088 ms
58,148 KB
testcase_07 AC 49 ms
36,888 KB
testcase_08 AC 390 ms
56,612 KB
testcase_09 AC 402 ms
55,132 KB
testcase_10 AC 868 ms
51,368 KB
testcase_11 AC 631 ms
50,176 KB
testcase_12 AC 107 ms
41,224 KB
testcase_13 AC 1,037 ms
56,992 KB
testcase_14 AC 1,218 ms
56,964 KB
testcase_15 AC 1,057 ms
57,428 KB
testcase_16 AC 1,124 ms
50,532 KB
testcase_17 AC 710 ms
57,216 KB
testcase_18 AC 1,061 ms
54,432 KB
testcase_19 AC 378 ms
49,664 KB
testcase_20 AC 292 ms
48,524 KB
testcase_21 AC 590 ms
55,272 KB
testcase_22 AC 999 ms
57,184 KB
testcase_23 AC 1,584 ms
58,620 KB
testcase_24 AC 1,774 ms
57,788 KB
testcase_25 AC 1,513 ms
56,952 KB
testcase_26 AC 1,597 ms
58,176 KB
testcase_27 AC 1,869 ms
57,388 KB
testcase_28 AC 1,642 ms
58,136 KB
testcase_29 AC 1,630 ms
57,052 KB
testcase_30 AC 1,481 ms
58,692 KB
testcase_31 AC 1,590 ms
58,360 KB
testcase_32 AC 1,625 ms
57,216 KB
testcase_33 AC 50 ms
37,116 KB
testcase_34 AC 45 ms
37,272 KB
testcase_35 AC 52 ms
37,248 KB
testcase_36 AC 53 ms
37,024 KB
testcase_37 AC 49 ms
37,016 KB
testcase_38 AC 75 ms
38,196 KB
testcase_39 AC 85 ms
39,152 KB
testcase_40 AC 50 ms
37,200 KB
testcase_41 AC 70 ms
38,036 KB
testcase_42 AC 53 ms
36,948 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