結果

問題 No.1736 Princess vs. Dragoness
ユーザー merlinmerlin
提出日時 2021-11-12 22:59:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,196 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 78,864 KB
実行使用メモリ 52,796 KB
最終ジャッジ日時 2024-05-04 10:38:46
合計ジャッジ時間 5,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,236 KB
testcase_01 AC 48 ms
37,120 KB
testcase_02 AC 47 ms
36,856 KB
testcase_03 AC 54 ms
37,200 KB
testcase_04 WA -
testcase_05 AC 49 ms
37,280 KB
testcase_06 AC 88 ms
38,592 KB
testcase_07 WA -
testcase_08 AC 84 ms
38,220 KB
testcase_09 AC 90 ms
39,424 KB
testcase_10 AC 47 ms
36,884 KB
testcase_11 AC 85 ms
38,400 KB
testcase_12 AC 84 ms
38,648 KB
testcase_13 AC 87 ms
38,944 KB
testcase_14 AC 97 ms
39,504 KB
testcase_15 AC 61 ms
37,452 KB
testcase_16 WA -
testcase_17 AC 92 ms
39,024 KB
testcase_18 AC 80 ms
38,388 KB
testcase_19 AC 84 ms
38,196 KB
testcase_20 AC 52 ms
37,156 KB
testcase_21 AC 70 ms
38,316 KB
testcase_22 AC 93 ms
39,012 KB
testcase_23 AC 68 ms
38,140 KB
testcase_24 AC 47 ms
36,964 KB
testcase_25 AC 50 ms
37,236 KB
testcase_26 AC 63 ms
38,616 KB
testcase_27 AC 66 ms
38,264 KB
testcase_28 AC 65 ms
38,268 KB
testcase_29 AC 72 ms
37,924 KB
testcase_30 AC 80 ms
38,772 KB
testcase_31 WA -
testcase_32 AC 96 ms
38,596 KB
testcase_33 AC 47 ms
36,872 KB
testcase_34 AC 45 ms
36,944 KB
testcase_35 AC 45 ms
37,016 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;

        TreeMap<Integer,Integer> tm=new TreeMap<>();
        long del=1l*b*y; int sz=0;
        for(i=0;i<n;i++)
        if(h[i]>0)
        {
            long tem=Math.min(del,h[i]);    //use y values here
            del-=tem;
            h[i]-=tem;

            long ti=tem/x;
            while(ti-->0)
            {
                if(sz<a)
                {
                    sz++;
                    tm.put(x,tm.getOrDefault(x,0)+1);
                }
                else if(sz==a)
                {
                    int lo=tm.higherKey(-1);
                    if(lo<x)
                    {
                        remove(tm,lo);
                        tm.put(x,tm.getOrDefault(x,0)+1);
                    }
                    else break;
                }
                else break;
            }
            if(tem%x!=0 && a>0)
            {
                int val=(int)(tem%x);
                if(sz<a)
                {
                    sz++;
                    tm.put(val,tm.getOrDefault(val,0)+1);
                }
                else if(sz==a)
                {
                    int lo=tm.higherKey(-1);
                    if(lo<val)
                    {
                        remove(tm,lo);
                        tm.put(val,tm.getOrDefault(val,0)+1);
                    }
                }
            }

            while(h[i]>del && !tm.isEmpty())
            {
                int key=tm.lowerKey(x+1);
                del+=key;
                remove(tm,key);
                a--;    //using a
                sz--;
            }

            tem=Math.min(h[i],del);
            del-=tem;
            h[i]-=tem;

            //still now h[i]>0
            ti=h[i]/x;
            if(h[i]%x!=0) ti++;
            if(ti>a) return false;
            a-=ti;

            while(sz>a)
            {
                int lo=tm.higherKey(-1);
                remove(tm,lo);
                sz--;
            }
        }
        return true;
    }

    static void remove(TreeMap<Integer,Integer> tm,int x)
    {
        int v=tm.get(x);
        if(v==1) tm.remove(x);
        else tm.put(x,v-1);
    }
}
0