[白俊18223]民俊と馬山には建雨がある
1.問題の説明
民俊と馬山には建宇もある。
2.問題分析
マルチアウトアルゴリズムにより,1番ノードから他のすべてのノードまでの最短距離を求める.到着地から逆立ち地までBFSを実施する過程で,使用経路に必要な建雨所のノードを確認する.
3.私の回答 import sys
import heapq
from collections import deque
v, e, p = map(int, sys.stdin.readline().rstrip().split())
nodes= [[] for _ in range(v+1)]
for _ in range(e):
a, b, c = map(int, sys.stdin.readline().rstrip().split())
nodes[a].append([b, c])
nodes[b].append([a, c])
INF = sys.maxsize
def Dijkstra():
distances = [INF for _ in range(v+1)]
distances[1] = 0
pq = []
heapq.heappush(pq, [0, 1])
while pq:
cur_cost, cur_node = heapq.heappop(pq)
if distances[cur_node] < cur_cost: continue
for next_node, next_cost in nodes[cur_node]:
if distances[next_node] > next_cost + cur_cost:
distances[next_node] = next_cost + cur_cost
heapq.heappush(pq, [next_cost+cur_cost, next_node])
return distances
def BFS():
queue = deque()
queue.append(v)
while queue:
cur_node = queue.popleft()
if cur_node == p: return True
for post_node, post_cost in nodes[cur_node]:
if distances[post_node] + post_cost == distances[cur_node]:
queue.append(post_node)
return False
distances = Dijkstra()
if BFS(): print("SAVE HIM")
else: print("GOOD BYE")
Reference
この問題について([白俊18223]民俊と馬山には建雨がある), 我々は、より多くの情報をここで見つけました
https://velog.io/@j_aion/백준-18223-민준이와-마산-그리고-건우
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
マルチアウトアルゴリズムにより,1番ノードから他のすべてのノードまでの最短距離を求める.到着地から逆立ち地までBFSを実施する過程で,使用経路に必要な建雨所のノードを確認する.
3.私の回答 import sys
import heapq
from collections import deque
v, e, p = map(int, sys.stdin.readline().rstrip().split())
nodes= [[] for _ in range(v+1)]
for _ in range(e):
a, b, c = map(int, sys.stdin.readline().rstrip().split())
nodes[a].append([b, c])
nodes[b].append([a, c])
INF = sys.maxsize
def Dijkstra():
distances = [INF for _ in range(v+1)]
distances[1] = 0
pq = []
heapq.heappush(pq, [0, 1])
while pq:
cur_cost, cur_node = heapq.heappop(pq)
if distances[cur_node] < cur_cost: continue
for next_node, next_cost in nodes[cur_node]:
if distances[next_node] > next_cost + cur_cost:
distances[next_node] = next_cost + cur_cost
heapq.heappush(pq, [next_cost+cur_cost, next_node])
return distances
def BFS():
queue = deque()
queue.append(v)
while queue:
cur_node = queue.popleft()
if cur_node == p: return True
for post_node, post_cost in nodes[cur_node]:
if distances[post_node] + post_cost == distances[cur_node]:
queue.append(post_node)
return False
distances = Dijkstra()
if BFS(): print("SAVE HIM")
else: print("GOOD BYE")
Reference
この問題について([白俊18223]民俊と馬山には建雨がある), 我々は、より多くの情報をここで見つけました
https://velog.io/@j_aion/백준-18223-민준이와-마산-그리고-건우
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
import sys
import heapq
from collections import deque
v, e, p = map(int, sys.stdin.readline().rstrip().split())
nodes= [[] for _ in range(v+1)]
for _ in range(e):
a, b, c = map(int, sys.stdin.readline().rstrip().split())
nodes[a].append([b, c])
nodes[b].append([a, c])
INF = sys.maxsize
def Dijkstra():
distances = [INF for _ in range(v+1)]
distances[1] = 0
pq = []
heapq.heappush(pq, [0, 1])
while pq:
cur_cost, cur_node = heapq.heappop(pq)
if distances[cur_node] < cur_cost: continue
for next_node, next_cost in nodes[cur_node]:
if distances[next_node] > next_cost + cur_cost:
distances[next_node] = next_cost + cur_cost
heapq.heappush(pq, [next_cost+cur_cost, next_node])
return distances
def BFS():
queue = deque()
queue.append(v)
while queue:
cur_node = queue.popleft()
if cur_node == p: return True
for post_node, post_cost in nodes[cur_node]:
if distances[post_node] + post_cost == distances[cur_node]:
queue.append(post_node)
return False
distances = Dijkstra()
if BFS(): print("SAVE HIM")
else: print("GOOD BYE")
Reference
この問題について([白俊18223]民俊と馬山には建雨がある), 我々は、より多くの情報をここで見つけました https://velog.io/@j_aion/백준-18223-민준이와-마산-그리고-건우テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol