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
0086 - Half Sort
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ă un vector cu <code>n</code> elemente numere întregi, <code>n</code> fiind număr par. Să se ordoneze crescător elementele din prima jumătate a vectorului și descrescător elementele din a doua jumătate. ==Date de intrare== Fişierul de intrare <code>halfsort.in</code> conţine pe prima linie numărul <code>n</code> si pe a doua linie <code>n</code> numere întregi separate prin spaţii. ==Date de ieșire== Pe ecran se va afișa mesajul: "Datele de intrare corespund restricțiilor impuse." Pe următoarea linie se vor afișa cele <code>n</code> elemente ale vectorului, ordonate conform cerinței, separate printr-un spațiu. În cazul în care datele introduse de la tastatură nu îndeplinesc cerințele enunțate, pe ecran se va afișa mesajul "Datele de intrare nu corespund restricțiilor impuse." ==Restricții și precizări== * <code>1 ≤ n ≤ 100</code>, <code>n</code> număr par * valoarea absolută a numerelor de pe a doua linie a fişierului de intrare va fi mai mică decât <code>1.000.000.000</code> ==Exemplu 1== ;Intrare :6 :8 2 9 4 5 7 ;Ieșire :Datele de intrare corespund restricțiilor impuse. :2 8 9 7 5 4 ==Exemplu 2== ;Intrare :-2 :8 2 9 4 5 7 ;Ieșire :Datele de intrare nu corespund restricțiilor impuse. ==Rezolvare== <syntaxhighlight lang="python" line="1"> #0086 Half Sort def conditii(n, numere): return len(numere) == n and \ 1 <= n <= 100 and \ n % 2 == 0 and \ all(abs(nr) < 1_000_000_000 for nr in numere) def half_sort(numere): # Secționăm și sortăm crescător prima jumătate a listei: numere[ :len(numere)//2] # Secționăm și sortăm descrescător a doua jumătate a listei: numere[len(numere)//2: ] # Folosim operatorul + pentru a concatena elementele celor două liste rezultat = sorted(numere[:len(numere)//2], reverse=False) + \ sorted(numere[len(numere)//2:], reverse=True) print(" ".join([str(x) for x in rezultat])) if __name__ == "__main__": n = int(input()) numere = [int(x) for x in input().split()] if not conditii(n, numere): print("Datele de intrare nu corespund restricțiilor impuse.") else: print("Datele de intrare corespund restricțiilor impuse.") half_sort(numere) </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