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
2834 - Sir 13
(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="1"> # 2834 - Sir 13 def valideaza_intrarea(data): """Verifică dacă datele de intrare sunt valide.""" nums = data.split() # Verificăm dacă lista de numere are lungimea minimă cerută if len(nums) < 4: return False # Verificăm dacă lista de numere conține cel puțin două numere pare și două numere impare numere_pare = 0 numere_impare = 0 for num in nums: if int(num) % 2 == 0: numere_pare += 1 else: numere_impare += 1 return numere_pare >= 2 and numere_impare >= 2 def gaseste_subsecventa(nums, este_crescatoare): """Găsește o subsecvență ordonată crescător sau descrescător.""" subsecventa = [] ultimul_numar = None for num in nums: if ultimul_numar is None or (num > ultimul_numar) == este_crescatoare: subsecventa.append(num) ultimul_numar = num return subsecventa if __name__ == "__main__": # Citim datele de intrare din fișier with open("sir13.in") as f: data = f.read().strip() # Verificăm dacă datele de intrare sunt valide if not valideaza_intrarea(data): with open("sir13.out", "w") as f: f.write("NU") print("Datele nu corespund restricțiilor impuse.") else: # Transformăm datele într-o listă de numere numere = list(map(int, data.split())) # Găsim o subsecvență ordonată crescător formată din numere pare și o subsecvență # ordonată descrescător formată din numere impare subsecventa_pare = gaseste_subsecventa(numere, True) subsecventa_impare = gaseste_subsecventa(numere, False) # Verificăm dacă am găsit cele două subsecvențe if len(subsecventa_pare) >= 2 and len(subsecventa_impare) >= 2: with open("sir13.out", "w") as f: f.write("DA") else: with open("sir13.out", "w") as f: f.write("NU") print("Datele sunt introduse corect.") </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