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 |
Tags
- BOJ
- View
- Behavior
- CoordinatorLayout
- 백준
- onMeasure
- LiveData
- kotlin
- CollapsingToolbarLayout
- sqlite
- 코틀린
- CustomView
- recyclerview
- room
- Coroutine
- onLayout
- 안드로이드
- lifecycle
- hilt
- Navigation
- DataBinding
- 알고리즘
- Android
- HTTP
- ViewModel
- 알림
- activity
- Algorithm
- notification
- AppBarLayout
Archives
- Today
- Total
개발일지
Algorithm in A..Z - 에라토스테네스의 체 본문
개념
소수를 판별하는 알고리즘
작동원리
1. 2부터 시작한다.
2. 방문하지 않은 숫자이면 그 숫자의 배수를 전부 체크한다.
3. 체크되지 않은 숫자는 소수이다.
시간복잠도
O(NloglogN)
문제
1978 소수찾기
코드
#include <iostream>
#include <vector>
using namespace std;
constexpr int MAX = 1000;
int main() {
vector<bool> isPrime(MAX, true);
isPrime[0] = isPrime[1] = false;
for (int i = 2; i*i <= MAX; ++i) {
if (isPrime[i]) {
for (int j = i*i; j <= MAX; j += i) {
isPrime[j] = false;
}
}
}
int n;
cin >> n;
int answer = 0;
while (n--) {
int num;
cin >> num;
answer += isPrime[num];
}
cout << answer << "\n";
}
'Algorithm (알고리즘)' 카테고리의 다른 글
Algorithm in A..Z - Dijkstra (0) | 2020.12.01 |
---|---|
Algorithm in A..Z - 유클리드 호제법 (0) | 2020.12.01 |
Android in A..Z - DFS (0) | 2020.11.28 |
Algorithm in A..Z - BFS (0) | 2020.11.28 |
Algorithm in A..Z - Binary Matching (Hopcroft-Karp) (0) | 2020.10.16 |
Comments