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
2554 - Or
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!
== Enunț == Se consideră numerele naturale X, N și o matrice pătratică A cu N x N elemente numere naturale. == Cerința == Determinați aria minimă a unei submatrice cu proprietatea că efectuând operația or pe biți or între toate elementele submatricei se obține valoarea X. == Date de intrare == Fișierul de intrare orin.txt conține pe primul rând numerele naturale X și N, separate printr-un spațiu. Pe următoarele N linii sunt câte N elemente numere naturale separate printr-un spațiu, reprezentând elementele matricei. == Date de ieșire == Fișierul de ieșire orout.txt va conține un număr natural reprezentând aria minimă a unei submatrice. == Restricții și precizări == * 2 ⩽ '''N''' ⩽ 500 * 1 ⩽ '''A[i][j]''' ⩽ 2^31 * Operația pe biți or dintre două numere întregi este un întreg în care al i-lea bit este 0 dacă și numai dacă bitul i din ambele numere este 0. * Se garantează că pentru toate datele de intrare există mereu o soluție și dimensiunea acesteia este cel puțin 2 == Exemplul 1 == ; Intrare ; orin.txt : 11 4 : 5 9 1 8 : 7 7 3 1 : 2 3 1 9 : 5 5 8 7 ; Ieșire : Datele de intrare corespund restricțiilor impuse ; orout.txt : 3 === Explicație === Submatricea este formată din elementele 3 1 9 de pe linia a treia (3 | 1 | 9 = 11). == Exemplul 2 == ; Intrare ; orin.txt : 11 1 : 5 9 1 8 : 7 7 3 1 : 2 3 1 9 : 5 5 8 7 ; Ieșire : Datele de intrare NU corespund restricțiilor impuse == Rezolvare == <syntaxhighlight lang="python" line> #2554 - Or import functools def valideaza_input(n, matrice): if not 2 <= n <= 500: return False for rand in matrice: for element in rand: if not 1 <= element < 2 ** 31: return False return True def calculeaza_aria_minima(x, n, matrice): aria_minima = float('inf') for i in range(n): for j in range(n): for k in range(i, n): for l in range(j, n): submatrice = [rand[j:l + 1] for rand in matrice[i:k + 1]] rezultat_or_pe_biti = functools.reduce(lambda x, y: x | y, [element for rand in submatrice for element in rand]) if rezultat_or_pe_biti == x: aria_minima = min(aria_minima, (k - i + 1) * (l - j + 1)) return aria_minima if __name__ == "__main__": with open("orin.txt", "r") as f: x, n = map(int, f.readline().split()) matrice = [list(map(int, f.readline().split())) for _ in range(n)] if valideaza_input(n, matrice): print("Datele de intrare corespund restricțiilor impuse") rezultat = calculeaza_aria_minima(x, n, matrice) with open("orout.txt", "w") as f: f.write(str(rezultat)) else: print("Datele de intrare NU corespund restricțiilor impuse") exit(0) </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