結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 23:20:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,831 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 79,260 KB
実行使用メモリ 38,616 KB
最終ジャッジ日時 2024-05-04 11:05:31
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,952 KB
testcase_01 AC 47 ms
36,716 KB
testcase_02 AC 44 ms
36,884 KB
testcase_03 AC 50 ms
37,120 KB
testcase_04 AC 62 ms
37,432 KB
testcase_05 AC 48 ms
37,076 KB
testcase_06 AC 76 ms
38,168 KB
testcase_07 AC 88 ms
38,616 KB
testcase_08 AC 70 ms
37,908 KB
testcase_09 AC 69 ms
38,348 KB
testcase_10 AC 43 ms
37,084 KB
testcase_11 AC 89 ms
38,508 KB
testcase_12 AC 73 ms
38,312 KB
testcase_13 AC 83 ms
38,544 KB
testcase_14 AC 80 ms
38,180 KB
testcase_15 AC 54 ms
37,164 KB
testcase_16 AC 54 ms
37,120 KB
testcase_17 AC 78 ms
38,296 KB
testcase_18 AC 63 ms
38,456 KB
testcase_19 AC 73 ms
38,320 KB
testcase_20 AC 51 ms
36,844 KB
testcase_21 AC 66 ms
38,064 KB
testcase_22 AC 71 ms
38,424 KB
testcase_23 AC 62 ms
38,144 KB
testcase_24 AC 45 ms
36,844 KB
testcase_25 AC 50 ms
37,296 KB
testcase_26 AC 79 ms
38,608 KB
testcase_27 AC 78 ms
38,528 KB
testcase_28 AC 77 ms
38,368 KB
testcase_29 AC 72 ms
37,968 KB
testcase_30 AC 66 ms
38,236 KB
testcase_31 AC 70 ms
37,560 KB
testcase_32 AC 69 ms
37,780 KB
testcase_33 AC 45 ms
37,232 KB
testcase_34 AC 43 ms
37,216 KB
testcase_35 AC 44 ms
36,888 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;
        }*/
        if(possible(h,a,b,x,y,0)) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }

    static boolean possible(int h[],int a,int b,int x,int y,int k)
    {
        int i,n=h.length;
        for(i=0;i<n;i++) h[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