結果

問題 No.1736 Princess vs. Dragoness
ユーザー U SU S
提出日時 2021-11-12 22:26:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 77,788 KB
最終ジャッジ日時 2024-11-25 19:35:37
合計ジャッジ時間 3,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,840 KB
testcase_01 AC 48 ms
61,508 KB
testcase_02 AC 48 ms
61,500 KB
testcase_03 AC 55 ms
64,644 KB
testcase_04 WA -
testcase_05 AC 57 ms
66,328 KB
testcase_06 AC 71 ms
73,752 KB
testcase_07 AC 94 ms
77,632 KB
testcase_08 AC 81 ms
77,148 KB
testcase_09 AC 87 ms
77,388 KB
testcase_10 AC 55 ms
65,668 KB
testcase_11 AC 89 ms
77,440 KB
testcase_12 AC 66 ms
72,332 KB
testcase_13 WA -
testcase_14 AC 66 ms
72,544 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 69 ms
73,800 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 55 ms
65,840 KB
testcase_21 AC 74 ms
75,456 KB
testcase_22 AC 87 ms
77,368 KB
testcase_23 AC 58 ms
68,188 KB
testcase_24 AC 51 ms
64,684 KB
testcase_25 AC 86 ms
77,020 KB
testcase_26 AC 77 ms
77,580 KB
testcase_27 AC 68 ms
73,008 KB
testcase_28 AC 60 ms
67,876 KB
testcase_29 AC 53 ms
65,916 KB
testcase_30 AC 70 ms
72,804 KB
testcase_31 WA -
testcase_32 AC 86 ms
77,788 KB
testcase_33 WA -
testcase_34 AC 46 ms
61,320 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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)]
while a != 0:
    here,num = heapq.heappop(hq)
    heapq.heappush(hq, (here+x, num))
    a -= 1
hq.sort(key=lambda x:x[1])
hq = deque(hq)
while True:
    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