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
0640 – NrFii
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!
= Cerința = Se dă vectorul de tați al unui arbore cu rădăcină cu <code>n</code> noduri. Determinați nodul din arbore cu număr maxim de fii. Dacă în arbore sunt mai multe noduri cu număr maxim de fii, afișați-le pe toate, în ordine crescătoare. = Date de intrare = Fișierul de intrare <code>nrfiiIN.txt</code> conține pe prima linie numărul de noduri <code>n</code>. Pe linia următoare se află vectorul de tați al arborelui, valorile fiind separate prin spații. = Date de ieșire = Fișierul de ieșire <code>nrfiiOUT.txt</code> va conține pe prima linie nodurile din arbore cu număr maxim de fii, în ordine crescătoare, separate printr-un spațiu.În cazul în care restricțiile nu sunt îndeplinite, se va afișa mesajul "Nu corespunde restricțiilor impuse". = Restricții și precizări = * <code>1 ≤ n ≤ 100</code> * în vectorul de tați rădăcina este marcată cu <code>0</code> = Exemplul 1: = <code>nrfiiIN.txt</code> 7 4 1 7 0 7 7 1 <code>nrfiiOUT.txt</code> 7 = Explicație = Nodul <code>7</code> are număr maxim de fii, <code>3</code>. == Exemplul 2: == <code>nrfiiIN.txt</code> 101 4 1 7 0 7 7 1 <code>nrfiiOUT.txt</code> Datele nu corespund restrictiilor impuse == Rezolvare == <syntaxhighlight lang="python3" line="1"> def citeste_arbore(file_path): with open(file_path, 'r') as file: n = int(file.readline().strip()) tati = list(map(int, file.readline().split())) return n, tati def verificare_restrictii(n): if 1 <= n <= 100: return True else: with open("nrfiiOUT.txt", "w") as file_out: file_out.write("Datele nu corespund restrictiilor impuse") return False def determina_noduri_max_fii(n, tati): fii = [0] * (n + 1) for tata in tati: if tata != -1: fii[tata] += 1 max_fii = max(fii) noduri_max_fii = [i for i in range(1, n + 1) if fii[i] == max_fii] return noduri_max_fii def scrie_rezultat(file_path, noduri_max_fii): with open(file_path, 'w') as file: if noduri_max_fii: file.write(' '.join(map(str, noduri_max_fii))) else: file.write("Datele nu corespund restrictiilor impuse") if __name__ == "__main__": file_input = "nrfiiIN.txt" file_output = "nrfiiOUT.txt" n, tati = citeste_arbore(file_input) if verificare_restrictii(n): noduri_max_fii = determina_noduri_max_fii(n, tati) scrie_rezultat(file_output, noduri_max_fii) </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