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
3583 - jetoane
(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> #3583 - Jetoane def valideaza_input(m, n, jetoane): # Funcție de validare a datelor de intrare conform restricțiilor if not (0 < m <= 28000 and 0 < n <= 28000): return False if len(jetoane) != m + n: return False return all(0 < val <= 50000 for val in jetoane) def gaseste_valori_comune(jetoane1, jetoane2): # Funcție pentru găsirea valorilor comune dintre cei doi copii valori_comune = set(jetoane1) & set(jetoane2) return valori_comune def determina_castigator(jetoane_copil1, jetoane_copil2, valori_comune): # Funcție pentru determinarea câștigătorului jetoane_ramase_copil1 = [val for val in jetoane_copil1 if val not in valori_comune] jetoane_ramase_copil2 = [val for val in jetoane_copil2 if val not in valori_comune] if len(jetoane_ramase_copil1) > len(jetoane_ramase_copil2): return 1 elif len(jetoane_ramase_copil1) < len(jetoane_ramase_copil2): return 2 else: return 0 def main(): # Citirea datelor din fișierul de intrare with open("jetoanein.txt", "r") as infile: m, n = map(int, infile.readline().split()) jetoane = list(map(int, infile.readline().split())) # Validare date de intrare if valideaza_input(m, n, jetoane): print("Datele de intrare corespund restricțiilor impuse") else: print("Datele de intrare NU corespund restricțiilor impuse") exit(0) # Separarea jetoanelor pentru fiecare copil jetoane_copil1 = jetoane[:m] jetoane_copil2 = jetoane[m:] # Găsirea valorilor comune valori_comune = gaseste_valori_comune(jetoane_copil1, jetoane_copil2) # Determinarea valorilor minimă și maximă comune valoare_minima_comuna = min(valori_comune) valoare_maxima_comuna = max(valori_comune) # Determinarea câștigătorului și scrierea rezultatelor în fișierul de ieșire castigator = determina_castigator(jetoane_copil1, jetoane_copil2, valori_comune) with open("jetoaneout.txt", "w") as outfile: outfile.write(f"{valoare_minima_comuna} {valoare_maxima_comuna} {castigator}\n") 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