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
2235 - tsunami
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!
Tsunamiul este valul mareic ce se propagă prin apa oceanelor/mărilor, ca urmare a producerii unor erupţii subacvatice sau/şi a unor cutremure submarine sau de coastă foarte puternice. Cercetătorii doresc să preîntâmpine efectele unor posibile valuri mareice prin marcarea şi clasificarea zonelor al căror risc de inundare este ridicat. Teritoriul studiat a fost împărţit în <code>n×m</code> pătrate identice (zone) rezultând o hartă digitizată, reprezentată sub forma unui tablou bidimensional cu <code>n</code> linii şi <code>m</code> coloane, fiecare element al tabloului memorând cota (înălţimea) terenului din pătratul unitate corespunzător. Zonele de apă au cota <code>0</code>, iar zonele de uscat au cote mai mari decât <code>0</code>. Orice tsunami este clasificat în funcţie de înălţimea valului mareic, pe o scară de la <code>1</code> la <code>10</code>. Cercetătorii doresc să marcheze zonele de risc ce pot fi afectate de un potenţial tsunami. Iniţial, valul mareic apare în toate zonele de cotă <code>0</code> vecine cu cel puţin o zonă de uscat. O zonă teritorială poate fi afectată dacă are cota strict mai mică decât înălţimea valului mareic şi se află în vecinătatea apei sau în vecinătatea unei zone afectate. Două pătrate unitate se învecinează dacă au o latură comună. = Cerința = Dată fiind harta digitizată a zonelor monitorizate, să se determine numărul zonelor de uscat afectate de un tsunami de înălțime <code>h</code>. = Date de intrare = Fișierul de intrare <code>tsunami.in</code> conține pe prima linie trei numere naturale <code>n</code>, <code>m</code> şi <code>h</code> separate prin câte un spațiu, reprezentând dimensiunile hărții, respectiv înălțimea valului mareic. Pe următoarele <code>n</code> linii sunt scrise câte <code>m</code> numere naturale separate prin câte un spațiu reprezentând, în ordine, cotele din cele <code>n×m</code> pătrate teritoriale unitate ale hărții. = Date de ieșire = Fișierul de ieșire <code>tsunami.out</code> conţine o singură valoare ce reprezintă numărul pătratelor unitate afectate de un tsunami de înălţime <code>h</code>. = Restricții și precizări = * <code>2 ≤ n,m ≤ 1000</code> * <code>1 ≤ h ≤ 10</code> * Zona monitorizată nu conţine lacuri interioare (pătrate unitate învecinate, având cota <code>0</code>, înconjurate complet de pătrate unitate având cote strict mai mari decît <code>0</code>) * Cotele sunt numere naturale ≤ <code>1000</code> = Exemplu: = <code>tsunami.in</code> 6 7 3 0 0 4 2 5 0 0 1 0 0 7 3 6 0 2 3 0 5 2 2 0 0 7 5 4 0 0 0 0 5 2 3 0 2 0 0 4 4 8 0 2 0 <code>tsunami.out</code> 6 === Explicație === Zonele inundate sunt reprezentate îngroşat în tabloul bidimensional: {| class="wikitable" |<code>0</code> |<code>0</code> |<code>4</code> |<code>2</code> |<code>5</code> |<code>0</code> |<code>0</code> |- |<code>1</code> |<code>0</code> |<code>0</code> |<code>7</code> |<code>3</code> |<code>6</code> |<code>0</code> |- |<code>2</code> |<code>3</code> |<code>0</code> |<code>5</code> |<code>2</code> |<code>2</code> |<code>0</code> |- |<code>0</code> |<code>7</code> |<code>5</code> |<code>4</code> |<code>0</code> |<code>0</code> |<code>0</code> |- |<code>0</code> |<code>5</code> |<code>2</code> |<code>3</code> |<code>0</code> |<code>2</code> |<code>0</code> |- |<code>0</code> |<code>4</code> |<code>4</code> |<code>8</code> |<code>0</code> |<code>2</code> |<code>0</code> |} == Rezolvare == <syntaxhighlight lang="python3"> import sys def is_valid_land(grid, n, m, i, j): """Checks if the given cell (i, j) is a valid land area.""" if 0 <= i < n and 0 <= j < m: return grid[i][j] > 0 return False def mark_affected_areas(grid, n, m, h): """Marks affected land areas starting from water cells.""" affected_count = 0 stack = [] # Initialize stack with water cells adjacent to land for i in range(n): for j in range(m): if grid[i][j] == 0: for di, dj in [(1, 0), (0, 1), (-1, 0), (0, -1)]: new_i = i + di new_j = j + dj if is_valid_land(grid, n, m, new_i, new_j): stack.append((new_i, new_j)) # Mark affected land areas using DFS while stack: i, j = stack.pop() if grid[i][j] > 0 and grid[i][j] <= h: grid[i][j] = -1 # Mark as affected affected_count += 1 for di, dj in [(1, 0), (0, 1), (-1, 0), (0, -1)]: new_i = i + di new_j = j + dj if is_valid_land(grid, n, m, new_i, new_j) and grid[new_i][new_j] > 0: stack.append((new_i, new_j)) return affected_count def main(): """Reads input, marks affected areas, and prints the result.""" n, m, h = map(int, input().split()) # Read the grid data grid = [] for _ in range(n): row = list(map(int, input().split())) grid.append(row) # Mark affected land areas and count them affected_count = mark_affected_areas(grid, n, m, h) # Print the number of affected land areas print(affected_count) if __name__ == "__main__": sys.stdin = open("tsunami.in") sys.stdout = open("tsunami.out", "w") main() sys.stdin.close() sys.stdout.close() </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