본문 바로가기

PS/백준

[백준 1011번 ] Fly me to the Alpha Centauri (파이썬/python)

728x90

https://www.acmicpc.net/problem/1011

 

1011번: Fly me to the Alpha Centauri

우현이는 어린 시절, 지구 외의 다른 행성에서도 인류들이 살아갈 수 있는 미래가 오리라 믿었다. 그리고 그가 지구라는 세상에 발을 내려 놓은 지 23년이 지난 지금, 세계 최연소 ASNA 우주 비행

www.acmicpc.net

 

생각보다 시간 많이 잡아먹은 문제.... 규칙을 알아야 풀 수 있는 문제였다

 

이 표를 보면 거리, 경로, 이동횟수, 이동횟수가 반복되는 횟수가 나온다

반복되는 횟수는 1 1 2 2 3 3 4 4 이렇게.

이거에 따라 이동횟수가 반복된다.

 

저 규칙을 보고 제곱의 성질을 이용해서 문제풀었다. 더 깔끔한 풀이가 있겠지만 이게 한계다..

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import sys
from math import sqrt
 
input = sys.stdin.readline
 
= int(input())
for _ in range(t):
 
    x, y = map(int, input().strip().split())
    distance = y - x
 
    sqrt_distance = int(sqrt(distance))
 
    if sqrt_distance * sqrt_distance == distance:
        cnt = sqrt_distance * 2 - 1
 
    elif distance > (sqrt_distance * sqrt_distance) and distance <= ((sqrt_distance * sqrt_distance) + sqrt_distance):
        cnt = sqrt_distance * 2
 
 
    elif distance > ((sqrt_distance * sqrt_distance) + sqrt_distance):
        cnt = sqrt_distance * 2 + 1
 
    if distance <= 3:
        cnt = distance
 
    print(cnt)
 
cs
728x90