結果

問題 No.1736 Princess vs. Dragoness
ユーザー U SU S
提出日時 2021-11-12 22:35:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,058 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-11-25 20:01:02
合計ジャッジ時間 4,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
60,672 KB
testcase_01 WA -
testcase_02 AC 50 ms
60,764 KB
testcase_03 AC 61 ms
64,640 KB
testcase_04 AC 77 ms
71,168 KB
testcase_05 AC 64 ms
65,536 KB
testcase_06 AC 98 ms
77,380 KB
testcase_07 AC 105 ms
77,696 KB
testcase_08 AC 95 ms
77,568 KB
testcase_09 AC 103 ms
77,440 KB
testcase_10 AC 64 ms
65,792 KB
testcase_11 AC 110 ms
77,952 KB
testcase_12 AC 80 ms
71,040 KB
testcase_13 AC 96 ms
77,056 KB
testcase_14 AC 87 ms
74,564 KB
testcase_15 AC 67 ms
68,352 KB
testcase_16 AC 82 ms
73,216 KB
testcase_17 AC 96 ms
77,312 KB
testcase_18 AC 77 ms
70,528 KB
testcase_19 AC 78 ms
70,400 KB
testcase_20 AC 66 ms
66,048 KB
testcase_21 AC 86 ms
73,728 KB
testcase_22 AC 97 ms
77,616 KB
testcase_23 AC 82 ms
72,628 KB
testcase_24 AC 57 ms
63,744 KB
testcase_25 AC 87 ms
75,332 KB
testcase_26 AC 90 ms
77,312 KB
testcase_27 AC 93 ms
77,312 KB
testcase_28 AC 77 ms
70,144 KB
testcase_29 AC 68 ms
66,944 KB
testcase_30 AC 82 ms
72,836 KB
testcase_31 AC 98 ms
77,056 KB
testcase_32 AC 97 ms
77,184 KB
testcase_33 AC 53 ms
61,184 KB
testcase_34 AC 53 ms
60,928 KB
testcase_35 AC 52 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
def mps(A):return [tuple(map(int, input().split())) for _ in range(A)]
import math
import bisect
import heapq
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = int(1e20)
mod = int(1e9+7)
import time
import copy

n,a,b,x,y = mp()
h = lmp()
hq = [(-h[i],i) for i in range(n)]
heapq.heapify(hq)
while a != 0:
    here,num = heapq.heappop(hq)
    #print(here,num)
    heapq.heappush(hq, (here+x, num))
    a -= 1
hq.sort(key=lambda x:x[1])
hq = deque(hq)
while b != 0:
    now = y
    while now != 0 and hq:
        u = hq.popleft()
        if u[0] >= 0:continue
        if -now <= u[0]:
            now += u[0]
        else:
            hq.appendleft((u[0]+now,u[1]))
            now = 0
    b -= 1
    if b == 0 or not hq:
        break
#print(hq)
if not hq:print("Yes")
else:print("No")
0