Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
3865 - Water Front
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python"> def validate_data(N, M, k, x, heights, daily_growths): # Validare pentru k și x if not (1 <= k <= 1000 and 1 <= x <= 10000): print("Eroare: k și x trebuie să fie în intervalul 1 ≤ k ≤ 1000 și 1 ≤ x ≤ 10000.") exit() # Validare pentru N, M, height și dailyGrowth if not (1 <= N <= 5000 and 1 <= M <= 10000): print("Eroare: N trebuie să fie în intervalul 1 ≤ N ≤ 5000 și M trebuie să fie în intervalul 1 ≤ M ≤ 10000.") exit() if not all(0 <= height <= 10000 for height in heights): print("Eroare: Înălțimile trebuie să fie în intervalul 0 ≤ height[i] ≤ 10000.") exit() if not all(0 <= growth <= 10000 for growth in daily_growths): print("Eroare: Creșterile zilnice trebuie să fie în intervalul 0 ≤ dailyGrowth[i] ≤ 10000.") exit() def calculate_height(N, M, k, x, heights, daily_growths): max_height = max(heights) for day in range(M): cut_heights = [min(heights[i], k * x) for i in range(N)] # Înălțimile pe care le putem tăia în ziua respectivă total_cut = min(sum(cut_heights), k * x * N) # Totalul pe care îl putem tăia în ziua respectivă for i in range(N): cut = min(heights[i], total_cut) # Cantitatea pe care o tăiem din arbustul i heights[i] -= cut # Efectuăm tăierea total_cut -= cut # Scădem cantitatea tăiată din total heights[i] += daily_growths[i] # Creștem înălțimile zilnice max_height = max(max(heights), max_height) return max_height def main(): N, M, k, x = map(int, input().split()) heights = [] daily_growths = [] for _ in range(N): h, d = map(int, input().split()) heights.append(h) daily_growths.append(d) result = calculate_height(N, M, k, x, heights, daily_growths) print(result) if __name__ == "__main__": main() </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width