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
1053 - Cladiri
(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!
==Solutie== <syntaxhighlight lang="python" line> with open("cladiri.in") as fin: n = int(fin.readline()) buildings = [list(map(int, fin.readline().strip())) for _ in range(n)] # determinăm înălțimea celor mai înalte turnuri și numărul de clădiri cu turnuri de aceeași înălțime max_height = 0 max_height_buildings = 0 heights = {} for b in buildings: for i in range(len(b)): height = b[i] if height > max_height: max_height = height max_height_buildings = 1 elif height == max_height: max_height_buildings += 1 if height in heights: heights[height] += 1 else: heights[height] = 1 # găsim clădirile în care Crina și Rareș au lipit bilețele cu numere identice common_buildings = set() for i in range(n): for j in range(i+1, n): if buildings[i] == buildings[j]: common_buildings.add(i) common_buildings.add(j) # determinăm cel mai mic număr de cuburi necesar pentru a completa clădirile astfel încât să nu mai apară bilețele identice min_cubes = 0 for b_idx in common_buildings: b = buildings[b_idx] for i in range(len(b)): for j in range(1, 10): if i == 0 and j == b[i]: # evităm cazul în care schimbăm înălțimea primului turn continue b_new = list(b) b_new[i] = j if b_new not in buildings: # am găsit o înălțime diferită de cele existente, așa că nu mai trebuie să adăugăm cuburi în această clădire min_cubes += j - b[i] break # scriem rezultatele în fișierul de ieșire </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