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
3935 - determinanta
(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="python3" line="1"> def este_intrare_valida(n, pozitii): # Verificăm dacă toate pozițiile sunt în limitele matricei for linie, coloana in pozitii: if not (1 <= linie <= n and 1 <= coloana <= n): return False return True def citeste_intrare(numefisier): with open(numefisier, 'r') as fisier: n = int(fisier.readline()) pozitii = [tuple(map(int, fisier.readline().split())) for _ in range(n)] if este_intrare_valida(n, pozitii): matrice = [[0] * n for _ in range(n)] for linie, coloana in pozitii: matrice[linie - 1][coloana - 1] = 1 return matrice, n else: raise ValueError("Date de intrare nevalide") def scrie_iesire(numefisier, rezultat): with open(numefisier, 'w') as fisier: fisier.write(str(rezultat) + '\n') def calculeaza_determinant(matrice, dimensiune): # Cazul de bază: matrice de dimensiune 2x2 if dimensiune == 2: return matrice[0][0] * matrice[1][1] - matrice[0][1] * matrice[1][0] determinant = 0 for i in range(dimensiune): # Eliminăm linia și coloana corespunzătoare elementului selectat submatrice = [linie[:i] + linie[i+1:] for linie in matrice[1:]] semn = (-1) ** i determinant += semn * matrice[0][i] * calculeaza_determinant(submatrice, dimensiune - 1) return determinant if __name__ == "__main__": fisier_intrare = "determinantain.txt" fisier_iesire = "determinantaout.txt" try: # Citim matricea și dimensiunea din fișierul de intrare matrice, dimensiune = citeste_intrare(fisier_intrare) # Calculăm determinantul rezultat_determinant = calculeaza_determinant(matrice, dimensiune) # Scriem rezultatul în fișierul de ieșire scrie_iesire(fisier_iesire, rezultat_determinant) except ValueError as e: print(f"Eroare: {e}") </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