結果
| 問題 |
No.2922 Rose Garden
|
| コンテスト | |
| ユーザー |
YuuuT
|
| 提出日時 | 2024-10-12 16:41:10 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 129 ms / 3,000 ms |
| コード長 | 963 bytes |
| コンパイル時間 | 172 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 100,736 KB |
| 最終ジャッジ日時 | 2024-10-12 16:41:30 |
| 合計ジャッジ時間 | 6,638 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 50 |
ソースコード
# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from more_itertools import distinct_permutations,distinct_combinations
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#/////////////////////////////////
# 切り上げ除算
def celiDiv(p : int, q : int) -> int:
return (p + q -1) // q
N,S,B = ms()
H = li()
tmp = H[0]
now = S
for i in range(N-1):
if celiDiv(tmp-H[i],B)<=S-now:
tmp = H[i]; now = S
if tmp<H[i+1]:
if now<celiDiv(H[i+1]-tmp,B):
print('No')
exit()
aa = celiDiv(H[i+1]-tmp,B)
tmp += B*aa
now -= aa
print('Yes')
YuuuT