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
1758 - Bile 3
(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="python" line> def simulate_balls(m, n, p, obstacles, balls): # Inițializăm matricea pentru terenul de joc board = [[0] * n for _ in range(m)] # Adăugăm obstacolele pe tablă for obstacle in obstacles: x, y = obstacle board[x - 1][y - 1] = 1 # Inițializăm vectorul pentru bilele lăsate să cadă de pe prima linie first_row_balls = balls # Iterăm prin fiecare coloană, de la stânga la dreapta for j in range(n): # Numărăm câte bile au ajuns în fiecare celulă de pe ultima linie for i in range(m): if i == m - 1: # Dacă suntem pe ultima linie, adăugăm numărul de bile lăsate să cadă din coloana j board[i][j] += first_row_balls[j] else: # Dacă nu suntem pe ultima linie, simulăm căderea bilelor if board[i][j] > 0: # Bila va cădea în jos până întâlnește un obstacol sau ajunge pe ultima linie k = i + 1 while k < m and board[k][j] == 0: k += 1 # Dacă am întâlnit un obstacol, bilele se vor deplasa pe orizontală if k < m: if j > 0 and board[k][j - 1] == 1: board[k][j - 1] += board[i][j] if j < n - 1 and board[k][j + 1] == 1: board[k][j + 1] += board[i][j] else: # Dacă am ajuns pe ultima linie, adăugăm bilele în acea celulă board[k - 1][j] += board[i][j] # Extragem numărul de bile din fiecare celulă de pe ultima linie last_row_balls = board[-1] return last_row_balls def main(): # Citim datele de intrare din fișier with open("bile.in", "r") as fin: m, n, p = map(int, fin.readline().split()) obstacles = [tuple(map(int, fin.readline().split())) for _ in range(p)] balls = [int(fin.readline()) for _ in range(n)] # Simulăm căderea bilelor last_row_balls = simulate_balls(m, n, p, obstacles, balls) # Scriem rezultatul în fișierul de ieșire with open("bile.out", "w") as fout: fout.write("\n".join(map(str, last_row_balls)) + "\n") 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