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
3991 - Modifica Paranteze
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 = Fie un șir de paranteze rotunde, deschise sau închise. Putem efectua de câte ori dorim operația de transformare a unei paranteze deschise într-una închisă sau invers. Să se determine numărul minim de operații necesare transformării secvenței inițiale într-una corect parantezată. Dacă acest lucru nu este posibil, se va afișa <code>-1</code>. = Date de intrare = Programul citește de la tastatură șirul de paranteze rotunde, fără spații. = Date de ieșire = Programul va afișa pe ecran numărul minim de operații necesar pentru a transforma șirul într-o secvență corect parantezată. Dacă nu este posibilă parantezarea corectă, se va afișa <code>-1</code>. = Restricții și precizări = * <code>1 ≤ numărul de paranteze ≤ 1000</code> = Exemplul 1: = Intrare (((( Ieșire 2 === Explicație === O posibilitate este să modificăm ultimele două paranteze deschise în paranteze închise și să obținem <code>(())</code>. == Exemplul 2: == Intrare ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( Ieșire Datele nu corespund restrictiilor impuse. == Rezolvare == <syntaxhighlight lang="python3" line="1"> def check_restriction(s): num_parentheses = s.count('(') + s.count(')') return 1 <= num_parentheses <= 1000 def nr_min_op(s): cnt = 0 nr_op = 0 n = len(s) if not check_restriction(s): print("Datele nu corespund restrictiilor impuse.") return -1 if n % 2 == 1: return -1 for i in range(n): if s[i] == '(': cnt += 1 else: cnt -= 1 if cnt < 0: nr_op += 1 cnt = 1 nr_op += cnt // 2 return nr_op if __name__ == "__main__": s = input("Introduceti un sir cu paranteze: ") if check_restriction(s): result = nr_min_op(s) if result != -1: print(result) else: print("Datele nu corespund restrictiilor 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