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
1089 - Cladiri 1
(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!
= Explicație = Numărul <code>N</code> total al clădirilor afectate este <code>8</code>. Numărul <code>M</code> maxim de clădiri afectate pe acelaşi nivel este <code>3</code> şi este atins pe nivelele <code>2</code> şi <code>4</code>. == Încărcare soluție == === Lipește codul aici === <syntaxhighlight lang="python" line="1"> import math # Initialize the arrays with zeros a = [0] * 10001 b = [0] * 10001 # Open the input file with open('cladiri1.in', 'r') as f: cx, cy, g = map(int, f.readline().split()) nr = 0 # Process each line in the file for line in f: x, y, rez = map(int, line.split()) max_dist = max(abs(cx - x), abs(cy - y)) if g - max_dist > 0 and rez - (g - max_dist) <= 0: nr += 1 a[max_dist] += 1 # Find the maximum value and its indices max_value = -1 k = 0 for i in range(10001): if max_value == a[i]: k += 1 b[k] = i elif max_value < a[i]: max_value = a[i] k = 1 b[k] = i # Open the output file with open('cladiri1.outtxt', 'w') as ff: ff.write(str(nr) + '\n') ff.write(str(max_value) + '\n') if nr != 0: for i in range(1, k + 1): ff.write(str(b[i]) + ' ') </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