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
1895 - Festivaluri
(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="python3"> from collections import defaultdict, deque class InParser: def __init__(self, nume): self.fin = open(nume, "r") def read_int(self): return int(self.fin.readline()) def read_values(self): return map(int, self.fin.readline().split()) class OutParser: def __init__(self, nume): self.fout = open(nume, "w") def write(self, s): self.fout.write(s) class Graph: def __init__(self, n): self.adj_list = defaultdict(list) self.n = n def add_edge(self, u, v, cost): self.adj_list[u].append((v, cost)) def max_festivals(n, m, p, z, r, streets, festivals): graph = Graph(n) for start, end, cost in streets: graph.add_edge(start, end, cost) visited = set() festivals_set = set(festivals) queue = deque([(z, 0, p)]) # (current_intersection, current_energy_spent, remaining_energy) cnt = 0 while queue: intersection, energy_spent, remaining_energy = queue.popleft() if intersection in festivals_set: cnt += 1 if cnt == r: return cnt if energy_spent > remaining_energy: continue for neighbor, cost in graph.adj_list[intersection]: new_energy_spent = energy_spent + cost if new_energy_spent <= p and neighbor not in visited: queue.append((neighbor, new_energy_spent, p - new_energy_spent)) visited.add(neighbor) return cnt fin = InParser("festivaluri.in") fout = OutParser("festivaluri.out") n, m, p, z, r = fin.read_values() streets = [tuple(fin.read_values()) for _ in range(m)] festivals = list(fin.read_values()) cnt = max_festivals(n, m, p, z, r, streets, festivals) fout.write(str(cnt) + "\n") fout.fout.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