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
4252 - Matrice 11
(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!
= Restricții și precizări = * <code>2 ≤ n,m ≤ 50</code> * indexarea liniilor și a coloanelor se face începând de la 1 * elementele tabloului aparțin intervalului <code>[0,10000]</code> * dacă atât elementul minim cât și cel maxim se află pe aceeași linie, atunci matricea se va afișa nemodificată. == Exemplul 1 == Input: 4 3 7 5 39 3 8 4 23 6 1 10 2 9 Output: 23 6 1 3 8 4 7 5 39 10 2 9 Explicație: Elementul minim (1) se află pe linia 3, iar elementul maxim (39) se află pe prima linie. Prin urmare, se interschimbă linia 1 cu linia 3. == Exemplul 2 == 2 2 100001 232 32 0 Output: Input-ul nu respectă restricțiile. == Rezolvare == <syntaxhighlight lang="python3" line="1"> def verifica_restrictii(n, m, matrice): if not (2 <= n <= 50) or not (2 <= m <= 50): return False if len(matrice) != n: return False for linie in matrice: if len(linie) != m: return False for element in linie: if not (0 <= element <= 10000): return False return True def citire(): n = int(input("Introduceți numărul de linii (n): ")) m = int(input("Introduceți numărul de coloane (m): ")) matrice = [] for i in range(n): linie = list(map(int, input(f"Introduceți elementele pentru linia {i + 1}: ").split())) matrice.append(linie) return n, m, matrice def afisare(matrice): for linie in matrice: print(*linie) def lin_min(matrice): min_val = float('inf') index_linie = 0 for i, linie in enumerate(matrice): if min(linie) < min_val: min_val = min(linie) index_linie = i + 1 return index_linie def lin_max(matrice): max_val = 0 index_linie = 0 for i, linie in enumerate(matrice): if max(linie) > max_val: max_val = max(linie) index_linie = i + 1 return index_linie def interschimbare(matrice, linie1, linie2): matrice[linie1 - 1], matrice[linie2 - 1] = matrice[linie2 - 1], matrice[linie1 - 1] def main(): n, m, matrice = citire() if not verifica_restrictii(n, m, matrice): print("Input-ul nu respectă restricțiile.") return linie_min = lin_min(matrice) linie_max = lin_max(matrice) if linie_min != linie_max: interschimbare(matrice, linie_min, linie_max) print("Matricea modificată:") afisare(matrice) 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