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
3341 - oaste2
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!
Pe un continent reprezentat printr-o matrice cu <code>n</code> linii și <code>m</code> coloane se află mai multe state, toate în conflict. Astfel, fiecare si-a mobilizat oastea. Fiecare element al matricei reprezintă o regiune. Două elemente, din matrice, învecinate pe linie sau pe coloană (nu si pe diagonală) reprezintă două regiuni care aparțin aceluiași stat. Un element din matrice ce contine cifra <code>0</code> este o regiune neutră care delimitează statele si nu are soldați. Elementul ce conține o cifră <code>c</code> nenulă este o regiune ce aparține unui stat și are <code>c</code> soldați. = Cerința = Să se determine numărul <code>S</code> maxim de soldați dintr-un stat al continentului precum și numărul <code>R</code> minim de regiuni pe care le poate avea un stat cu <code>S</code> soldati. = Date de intrare = Fișierul de intrare <code>oaste2.in</code> conține pe prima linie numerele naturale <code>n</code> si <code>m</code>, iar pe fiecare dintre următoarele <code>n</code> linii conține câte <code>m</code> cifre, separate prin câte un spațiu. = Date de ieșire = Fișierul de ieșire <code>oaste2.out</code> va conține pe prima linie cele două numere <code>S R</code> separate printr-un spațiu, cu semnificația din enunț = Restricții și precizări = * <code>n</code> si <code>m</code> vor fi numere naturale cu valori intre <code>1</code> si <code>100</code> inclusiv; * fiecare element al matricei va avea valori naturale cuprinse intre <code>0</code> si <code>9</code> inclusiv; * există cel puțin o cifră nenula în matrice = Exemplu: = <code>oaste2.in</code> 4 6 0 1 1 0 2 9 9 0 2 0 1 0 0 1 1 0 0 2 0 0 1 1 1 1 <code>oaste2.out</code> 12 3 === Explicație === Harta din fișierul de intrare contine <code>3</code> state având: <code>12</code> soldați (culoarea rosu – <code>10</code> regiuni), <code>12</code> soldați (culoare galben – <code>3</code> regiuni), <code>9</code> soldați (culoare verde – <code>1</code> regiune) <syntaxhighlight lang="python" line="1"> def in_bounds(x, y, n, m): return 0 <= x < n and 0 <= y < m def dfs(matrix, visited, x, y, n, m): stack = [(x, y)] visited[x][y] = True soldiers_sum = 0 region_size = 0 directions = [(-1, 0), (1, 0), (0, -1), (0, 1)] state_value = matrix[x][y] while stack: cx, cy = stack.pop() soldiers_sum += matrix[cx][cy] region_size += 1 for dx, dy in directions: nx, ny = cx + dx, cy + dy if in_bounds(nx, ny, n, m) and not visited[nx][ny] and matrix[nx][ny] == state_value: visited[nx][ny] = True stack.append((nx, ny)) return soldiers_sum, region_size def find_strongest_state(matrix): n = len(matrix) m = len(matrix[0]) visited = [[False] * m for _ in range(n)] max_soldiers = 0 min_regions = float('inf') for i in range(n): for j in range(m): if matrix[i][j] != 0 and not visited[i][j]: soldiers, regions = dfs(matrix, visited, i, j, n, m) if soldiers > max_soldiers: max_soldiers = soldiers min_regions = regions elif soldiers == max_soldiers: min_regions = min(min_regions, regions) return max_soldiers, min_regions # Exemplu de utilizare: matrix = [ [1, 1, 0, 3], [1, 0, 3, 3], [2, 2, 2, 0], [2, 0, 0, 0] ] max_soldiers, min_regions = find_strongest_state(matrix) print(f"Număr maxim de soldați: {max_soldiers}, Număr minim de regiuni: {min_regions}") </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