728x90
https://www.acmicpc.net/problem/1011
생각보다 시간 많이 잡아먹은 문제.... 규칙을 알아야 풀 수 있는 문제였다
이 표를 보면 거리, 경로, 이동횟수, 이동횟수가 반복되는 횟수가 나온다
반복되는 횟수는 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
t = 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
'PS > 백준' 카테고리의 다른 글
[백준 2869번 ] 달팽이는 올라가고싶다 (파이썬/python) (0) | 2021.06.14 |
---|---|
[백준 4948번 ] 베르트랑 공준 (파이썬/python) (0) | 2021.06.14 |
[백준 2839번 ] 설탕 배달 (파이썬/python) (0) | 2021.06.14 |
[백준 1316번 ] 그룹 단어 체커 (파이썬/python) (0) | 2021.06.14 |
[백준 2941번 ] 크로아티아 알파벳 (파이썬/python) (0) | 2021.06.14 |