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
- C언어
- Math
- String
- Algospot
- BASIC
- udemy
- sorting
- Algorithm
- web
- Python
- php
- graph
- 따배씨
- 백준
- dfs
- 정수론
- 따라하면서 배우는 C언어
- Cleancode
- programmers
- 인프런
- BOJ
- C
- JavaScript
- BFS
- 생활코딩
- 종만북
- greedy
- server
- 따라하며 배우는 C언어
- DP
Archives
- Today
- Total
몽상실현개발주의
[Algospot] 정수론 / PASS486 / Python 파이썬 본문
https://www.algospot.com/judge/problem/read/PASS486#
풀이
주어진 범위안의 수 중, 약수의 개수가 n 개가 되는 수의 개수를 구하는 문제이다.
먼저, 에라토스테네스의 체를 사용하여 1천만 이하의 모든 수의 가장 작은 소인수를 구한 뒤
주어진 범위의 약수의 개수를 구해주었다.
# 1천만 이하의 모든 수의 약수의 개수를 계산하는 알고리즘
Max = 10000000
# 가장 작은 소인수
minFactor = [x for x in range(Max+1)]
minFactor[0] = 0
minFactor[1] = 1
sqrtn = int(Max ** 0.5)
for i in range(2, sqrtn+1):
if minFactor[i] == i:
for j in range(i*i, Max+1, i):
if minFactor[j] == j:
minFactor[j] = i
# minFactorPower[i] = i 의 소인수 분해에는 minFactor[i]의 몇승이 포함되는지
minFactorPower = [0] * (Max + 1)
# factors[i] = i 가 가진 약수의 개수
factors = [0] * (Max + 1)
def getFactorsSmart():
global Max, minFactor, minFactorPower, factors
# 1의 약수는 1개
factors[1] = 1
for i in range(2, Max+1):
# 소수인 경우
if minFactor[i] == i:
# i ** 1 승
minFactorPower[i] = 1
# 소수 [1, i] -> 2개
factors[i] = 2
else:
p = minFactor[i]
m = int(i / p)
if p != minFactor[m]:
minFactorPower[i] = 1
else:
minFactorPower[i] = minFactorPower[m] + 1
a = minFactorPower[i]
factors[i] = int((factors[m]/a) * (a+1))
getFactorsSmart()
C = int(input())
for _ in range(C):
n, lo, hi = map(int, input().split())
res = 0
for i in range(lo, hi+1):
if factors[i] == n:
res += 1
print(res)
※ 파이썬은 시간제한을 통과하지 못한다... (정확히는 풀이에 성공한사람이 한명도 없었다, 안될거야 아마...)
'Algorithm PS > Algospot' 카테고리의 다른 글
[Algospot] 비트마스크 / GRADUATION / Python 파이썬 (0) | 2021.10.19 |
---|---|
[Algospot] 정수론 / POTION / Python 파이썬 (0) | 2021.10.04 |
[Algospot] 이진탐색 / RATIO / Python 파이썬 (0) | 2021.09.22 |
[Algospot] 이분법 / LOAN / Python 파이썬 (0) | 2021.09.22 |
[Algospot] 이분법 / ROOTS / Python 파이썬 (0) | 2021.08.30 |
Comments