Prime factorization (Sieve)
(Mylib/Number/Prime/prime_factorize_sieve.cpp)
Operations
-
PrimeFactorize(int N)
-
p[i]
= (i
の最小の素因数)
- Time complexity $O(N log N)$
-
factorize(int N)
-
N
の素因数を昇順に列挙する。
- 素因数の個数だけループが回る。
Requirements
Notes
Problems
References
Code
Back to top page