일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 동적 계획
- 배열
- 그리디
- 그래프
- git hub
- 자기개발
- 정렬
- 트리
- format 메서드
- 재귀 함수
- 문법
- 기초
- 유닉스
- 알고리즘
- 백준
- 스택
- 탐색
- 이진 탐색
- 우분투
- sys.stdin.readline()
- type 함수
- 순차 탐색
- UNIX
- IT
- 자료구조
- MiniHeap
- 파이썬
- 분할 정복
- Git
- NQueen
Archives
- Today
- Total
코딩고치
[백준][수학]골드바흐의 파티션 본문
짝수 N을 두 소수의 합으로 나타낼 때 N에 대한 두 소수의 합의 개수를 출력하는 문제. 기존에 풀었던 골드바흐의 추측에서 작성한 코드를 이용하면 쉽게 풀 수 있다.
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
32
33
34
35
36
37
|
#include <iostream>
using namespace std;
const int Max = 1000000;
bool arr[Max + 1];
int main(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
arr[0] = arr[1] = true;
for (int i = 2; i * i < Max; i++)
{
if (arr[i] == false)
{
for (int j = i + i; j <= Max; j += i)
arr[j] = true;
}
}
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
int count = 0;
for (int i = 2; i <= n/2; i++) // 순서만 다른 것을 count하지 않기 위해 i<=n/2
{
if (arr[i] == false && arr[n - i] == false)
count++;
}
cout << count << '\n';
}
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'백준 알고리즘 기초 > 수학' 카테고리의 다른 글
[백준][수학]진법 변환 (0) | 2019.09.14 |
---|---|
[백준][수학]진법 변환2 (0) | 2019.09.14 |
[백준][수학]-2진법 (0) | 2019.09.13 |
[백준][수학]숨바꼭질 (0) | 2019.09.12 |
[백준][수학]GCD 합 (0) | 2019.09.12 |
Comments