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
- BOJ
- 종만북
- php
- Math
- C
- Cleancode
- 따라하면서 배우는 C언어
- udemy
- 백준
- 인프런
- web
- BASIC
- 따라하며 배우는 C언어
- greedy
- 따배씨
- C언어
- DP
- sorting
- Algorithm
- JavaScript
- Python
- dfs
- String
- 정수론
- server
- programmers
- 생활코딩
- BFS
- Algospot
- graph
Archives
- Today
- Total
몽상실현개발주의
[Algospot] 이진탐색 / RATIO / Python 파이썬 본문
https://www.algospot.com/judge/problem/read/RATIO#
풀이
주어진 승률에서, 승률을 1% 올리기위한 연승 횟수를 구하는 문제이다.
먼저, 최대 횟수 연승 후에도 승률 1% 가 오르지 않는 경우를 제외하였다.
그리고 최소 연승 횟수가 최대 연승 횟수와 같아질 때 까지 이진탐색을 시행하였다.
T = int(input())
for _ in range(T):
N, M = map(int, input().split())
Z = int(M * 100 / N)
Max = 2000000000
if int((M+Max) * 100 / (N+Max)) == Z:
print(-1)
else:
hi = Max
lo = 0
while lo + 1 < hi:
half = (hi+lo) // 2
Z_ = int((M+half) * 100 / (N+half))
if Z == Z_:
lo = half
else:
hi = half
print(hi)
'Algorithm PS > Algospot' 카테고리의 다른 글
[Algospot] 비트마스크 / GRADUATION / Python 파이썬 (0) | 2021.10.19 |
---|---|
[Algospot] 정수론 / POTION / Python 파이썬 (0) | 2021.10.04 |
[Algospot] 정수론 / PASS486 / Python 파이썬 (0) | 2021.09.22 |
[Algospot] 이분법 / LOAN / Python 파이썬 (0) | 2021.09.22 |
[Algospot] 이분법 / ROOTS / Python 파이썬 (0) | 2021.08.30 |
Comments