Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- js to ts
- error
- Redux
- 토이프로젝트
- OS
- 백준
- 기초100제
- 자료구조
- 파이썬
- Spring
- 스프링
- react
- 프로그래머스
- 타입스크립트
- memory
- 알고리즘
- Java
- Operating System
- react-redux
- 공부
- web
- 정렬
- 협업
- 일상
- 분할메모리할당
- CPU 스케줄링
- 리덕스장바구니
- C++
- 코드업
- codeup
Archives
- Today
- Total
감자튀김 공장🍟
[백준/1004] 어린 왕자 (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
import sys
import math
input = sys.stdin.readline
t = int(input())
for _ in range(t):
x1, y1, x2, y2 = map(int, input().split())
p = int(input())
count = 0
for _ in range(p):
cx, cy, cr = map(int, input().split())
dis1 = math.sqrt((x1 - cx) ** 2 + (y1 - cy) ** 2)
dis2 = math.sqrt((x2 - cx) ** 2 + (y2 - cy) ** 2)
if cr > dis1 and cr > dis2:
pass
elif cr > dis1:
count += 1
elif cr > dis2:
count += 1
print(count)
✔ 후기
1002번과 비슷한 문제인데 진입/이탈 횟수가 추가되는 경우를 잘 생각해야한다.
참고 코드:
https://itstory1592.tistory.com/35#%EB%AC%B-%EC%A-%-C%--%ED%--%--%EC%-D%B-
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/1037] 약수 (with 파이썬) (0) | 2022.12.15 |
---|---|
[백준/5086] 배수와 약수 (with 파이썬) (0) | 2022.12.14 |
[백준/1002] 터렛 (with 파이썬) (0) | 2022.12.12 |
[백준/3053] 택시 기하학 (with 파이썬) (0) | 2022.12.11 |
[백준/2477] 참외밭 (with 파이썬) (0) | 2022.12.10 |
Comments