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
1340 - Rucsac
(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 validare_date(n, GMax, obiecte): if not (1 <= n <= 1000): raise ValueError("n trebuie să fie între 1 și 1000") if not (1 <= GMax <= 10000): raise ValueError("GMax trebuie să fie între 1 și 10000") for greutate, valoare in obiecte: if not (1 <= greutate <= 10000 and 1 <= valoare <= 10000): raise ValueError("Greutatea și valoarea fiecărui obiect trebuie să fie între 1 și 10000") def castig_maxim(n, GMax, obiecte): obiecte.sort(key=lambda x: x[1] / x[0], reverse=True) # Sortează obiectele după raportul valoare/greutate în ordine descrescătoare castig_total = 0 greutate_actuala = 0 for obiect in obiecte: greutate, valoare = obiect if greutate_actuala + greutate <= GMax: castig_total += valoare greutate_actuala += greutate else: fractiune = (GMax - greutate_actuala) / greutate # Calculăm cât din obiect putem lua pentru a umple rucsacul castig_total += fractiune * valoare break return castig_total # Citirea datelor de intrare n, GMax = map(int, input().split()) obiecte = [tuple(map(int, input().split())) for _ in range(n)] # Calcularea și afișarea câștigului maxim rezultat = castig_maxim(n, GMax, obiecte) print(rezultat) </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