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
3086 - densitate1
(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" line> #3086 - Densitate1 def validare_date(n, a, d): # Verificăm restricțiile privind lungimea șirului if not 1 <= n <= 100000: return False, "Lungimea șirului trebuie să fie între 1 și 100.000." # Verificăm restricțiile privind elementele șirului for elem in a: if not 0 <= elem <= 1000000: return False, "Elementele șirului trebuie să fie între 0 și 1.000.000." # Verificăm restricțiile privind densitatea d if not 0 <= d <= 0.99: return False, "densitatea trebuie să fie între 0 și 0.99." return True, "" def calculeaza_secvente(n, a, d): numar_secvente = 0 # Parcurgem șirul pentru a genera secvențele for i in range(n): for j in range(i + 1, n + 1): # Extragem secvența curentă secventa_curenta = a[i:j] # Calculăm densitatea secvenței curente densitate_secventa = len([x for x in secventa_curenta if x % 2 == 0]) / len(secventa_curenta) # Verificăm dacă densitatea este exact d if round(densitate_secventa, 2) == d: numar_secvente += 1 return numar_secvente # Citim datele din fișierul de intrare with open("densitatein.txt", "r") as f: n = int(f.readline()) a = list(map(int, f.readline().split())) d = float(f.readline()) # Validăm datele valid, mesaj = validare_date(n, a, d) # dacă datele sunt valide, rezolvăm problema și scriem rezultatul în fișierul de ieșire if valid: print("Datele de intrare corespund restricțiilor impuse") rezultat = calculeaza_secvente(n, a, d) with open("densitateout.txt", "w") as f_out: f_out.write(str(rezultat)) else: print("Datele de intrare NU corespund restricțiilor impuse") </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