結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 23:20:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 1,831 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 78,836 KB
実行使用メモリ 51,660 KB
最終ジャッジ日時 2024-11-25 21:34:34
合計ジャッジ時間 5,701 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,336 KB
testcase_01 AC 52 ms
50,172 KB
testcase_02 AC 52 ms
50,092 KB
testcase_03 AC 55 ms
50,104 KB
testcase_04 AC 70 ms
50,792 KB
testcase_05 AC 52 ms
50,336 KB
testcase_06 AC 78 ms
51,352 KB
testcase_07 AC 82 ms
51,228 KB
testcase_08 AC 70 ms
50,992 KB
testcase_09 AC 86 ms
51,480 KB
testcase_10 AC 52 ms
50,392 KB
testcase_11 AC 87 ms
51,648 KB
testcase_12 AC 69 ms
51,336 KB
testcase_13 AC 78 ms
51,196 KB
testcase_14 AC 80 ms
51,496 KB
testcase_15 AC 60 ms
50,020 KB
testcase_16 AC 58 ms
50,440 KB
testcase_17 AC 79 ms
51,660 KB
testcase_18 AC 73 ms
50,916 KB
testcase_19 AC 75 ms
51,368 KB
testcase_20 AC 56 ms
49,948 KB
testcase_21 AC 83 ms
51,344 KB
testcase_22 AC 86 ms
51,168 KB
testcase_23 AC 69 ms
51,300 KB
testcase_24 AC 54 ms
50,284 KB
testcase_25 AC 60 ms
50,268 KB
testcase_26 AC 81 ms
51,344 KB
testcase_27 AC 80 ms
51,232 KB
testcase_28 AC 78 ms
51,244 KB
testcase_29 AC 73 ms
51,160 KB
testcase_30 AC 84 ms
51,196 KB
testcase_31 AC 69 ms
50,844 KB
testcase_32 AC 72 ms
51,272 KB
testcase_33 AC 51 ms
50,088 KB
testcase_34 AC 50 ms
50,388 KB
testcase_35 AC 53 ms
50,344 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