[백준 14431] 소수마을
1. 문제 설명
2. 문제 분석
현재 노드와 다음 노드 간의 거리가 소수일 때에만 갱신에 사용할 수 있다. 다익스트라 알고리즘과 소수 판별 알고리즘을 혼합해 사용한다.
3. 나의 풀이
import sys
import heapq
INF = sys.maxsize
x1, y1, x2, y2 = map(int, sys.stdin.readline().rstrip().split())
nodes = []
nodes.append((x1, y1))
nodes.append((x2, y2))
n = int(sys.stdin.readline().rstrip())
for _ in range(n):
x, y = map(int, sys.stdin.readline().rstrip().split())
nodes.append((x, y))
def is_prime(dist):
if dist < 2: return False
elif dist == 2: return True
for i in range(2, int(dist**0.5)+1):
if dist % i == 0: return False
return True
def Dijkstra():
distances = [INF for _ in range(n+2)]
distances[0] = 0
pq = []
heapq.heappush(pq, [0, 0])
while pq:
cur_cost, cur_node = heapq.heappop(pq)
cur_x, cur_y = nodes[cur_node]
if distances[cur_node] < cur_cost: continue
for next_node in range(n+2):
next_x, next_y = nodes[next_node]
next_cost = int(((cur_x-next_x)**2 + (cur_y-next_y)**2)**0.5)
if is_prime(next_cost) and distances[next_node] > cur_cost + next_cost:
distances[next_node] = cur_cost + next_cost
heapq.heappush(pq, [cur_cost + next_cost, next_node])
return distances[1]
ans = Dijkstra()
if ans == INF: print(-1)
else: print(ans)
Author And Source
이 문제에 관하여([백준 14431] 소수마을), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-14431-소수마을
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
현재 노드와 다음 노드 간의 거리가 소수일 때에만 갱신에 사용할 수 있다. 다익스트라 알고리즘과 소수 판별 알고리즘을 혼합해 사용한다.
3. 나의 풀이
import sys
import heapq
INF = sys.maxsize
x1, y1, x2, y2 = map(int, sys.stdin.readline().rstrip().split())
nodes = []
nodes.append((x1, y1))
nodes.append((x2, y2))
n = int(sys.stdin.readline().rstrip())
for _ in range(n):
x, y = map(int, sys.stdin.readline().rstrip().split())
nodes.append((x, y))
def is_prime(dist):
if dist < 2: return False
elif dist == 2: return True
for i in range(2, int(dist**0.5)+1):
if dist % i == 0: return False
return True
def Dijkstra():
distances = [INF for _ in range(n+2)]
distances[0] = 0
pq = []
heapq.heappush(pq, [0, 0])
while pq:
cur_cost, cur_node = heapq.heappop(pq)
cur_x, cur_y = nodes[cur_node]
if distances[cur_node] < cur_cost: continue
for next_node in range(n+2):
next_x, next_y = nodes[next_node]
next_cost = int(((cur_x-next_x)**2 + (cur_y-next_y)**2)**0.5)
if is_prime(next_cost) and distances[next_node] > cur_cost + next_cost:
distances[next_node] = cur_cost + next_cost
heapq.heappush(pq, [cur_cost + next_cost, next_node])
return distances[1]
ans = Dijkstra()
if ans == INF: print(-1)
else: print(ans)
Author And Source
이 문제에 관하여([백준 14431] 소수마을), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-14431-소수마을
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import sys
import heapq
INF = sys.maxsize
x1, y1, x2, y2 = map(int, sys.stdin.readline().rstrip().split())
nodes = []
nodes.append((x1, y1))
nodes.append((x2, y2))
n = int(sys.stdin.readline().rstrip())
for _ in range(n):
x, y = map(int, sys.stdin.readline().rstrip().split())
nodes.append((x, y))
def is_prime(dist):
if dist < 2: return False
elif dist == 2: return True
for i in range(2, int(dist**0.5)+1):
if dist % i == 0: return False
return True
def Dijkstra():
distances = [INF for _ in range(n+2)]
distances[0] = 0
pq = []
heapq.heappush(pq, [0, 0])
while pq:
cur_cost, cur_node = heapq.heappop(pq)
cur_x, cur_y = nodes[cur_node]
if distances[cur_node] < cur_cost: continue
for next_node in range(n+2):
next_x, next_y = nodes[next_node]
next_cost = int(((cur_x-next_x)**2 + (cur_y-next_y)**2)**0.5)
if is_prime(next_cost) and distances[next_node] > cur_cost + next_cost:
distances[next_node] = cur_cost + next_cost
heapq.heappush(pq, [cur_cost + next_cost, next_node])
return distances[1]
ans = Dijkstra()
if ans == INF: print(-1)
else: print(ans)
Author And Source
이 문제에 관하여([백준 14431] 소수마을), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j_aion/백준-14431-소수마을저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)