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
0081 - Matrice
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 == Scrieţi un program care citeşte de la tastatură un număr natural '''n''' ( '''1 ≤ n ≤ 20''' ) şi apoi elementele unui tablou bidimensional cu '''n''' linii şi '''n''' coloane, care memorează numere naturale. Programul afişează pe ecran numărul de elemente din tablou care sunt strict mai mari decât toate elementele cu care se învecinează direct (aflate pe aceeaşi linie dar pe o coloană alăturată sau pe aceeaşi coloană dar pe o linie alăturată). == Date de intrare == Programul citește de la tastatură numărul '''n''', iar apoi '''n*n''' numere naturale, separate prin spaţii. == Date de ieşire == Dacă datele sunt introduse corect,pe ecran se va afișa :'''"Datele sunt introduse corect."''',apoi pe un rând nou numărul de elemente din tablou care respectă regula.În cazul contrar,se va afișa pe ecran '''"Datele nu corespund restricțiilor impuse."'''. == Restricții și precizări == * 1 ⩽ n ⩽ 20 * elementele matricei vor fi mai mici decât 1.000.000 == Exemplu == ; Intrare : 4 : 1 5 1 1 : 2 1 2 3 : 1 3 4 2 : 2 1 2 1 ; Date de ieșire : Datele sunt introduse corect. : 5 == Explicație == Elementele din matrice care respectă regula sunt: '''5 2 3 4 2''' == Rezolvare == <syntaxhighlight lang="python" line> def validare_date(n, matrice): # Verifică dimensiunea matricei if n < 1 or n > 20: return False # Verifică dacă elementele matricei sunt numere naturale for linie in matrice: for element in linie: if not isinstance(element, int) or element < 0: return False # Datele sunt valide return True def rezolva_problema(n, matrice): numar_elemente= 0 # Verifică fiecare element din matrice for i in range(n): for j in range(n): este_maxim = True # Verifică dacă există un element vecin mai mare if i > 0 and matrice[i-1][j] > matrice[i][j]: este_maxim = False if i < n-1 and matrice[i+1][j] > matrice[i][j]: este_maxim = False if j > 0 and matrice[i][j-1] > matrice[i][j]: este_maxim = False if j < n-1 and matrice[i][j+1] > matrice[i][j]: este_maxim = False # Dacă este maxim, crește numărul de elemente găsite if este_maxim: numar_elemente+= 1 # Returnează numărul de elemente găsite return numar_elemente if __name__ == '__main__': # Citirea datelor de intrare n = int(input()) matrice = [] for i in range(n): linie = [int(x) for x in input().split()] matrice.append(linie) # Verificarea datelor de intrare if not validare_date(n, matrice): print("Datele nu corespund restricțiilor impuse.") else : # Rezolvarea problemei și afișarea rezultatului rezultat = rezolva_problema(n, matrice) print("Datele sunt introduse corect.") print(rezultat) </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