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
- softeer
- C
- Frustum
- algorithm
- winapi
- GeeksForGeeks
- 백준
- Unreal Engine5
- C++
- RVO
- UnrealEngine5
- 티스토리챌린지
- NRVO
- 1563
- directx
- 프로그래머스
- 오블완
- Programmers
- 줄 세우기
- 2294
- UE5
- IFileDialog
- UnrealEngine4
- RootMotion
- const
- DirectX11
- baekjoon
- DeferredRendering
- 팰린드롬 만들기
- 언리얼엔진5
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 17103번 : 골드바흐 파티션 본문
https://www.acmicpc.net/problem/17103
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
using namespace std;
int t, n;
bool isPrimeNum[1000001] = { false };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
memset(isPrimeNum, true, sizeof(isPrimeNum));
isPrimeNum[0] = isPrimeNum[1] = false; // 0,1은 소수가 아님.
for (int i = 2; i*i < 1000000; ++i)
{
if (!isPrimeNum[i]) continue;
for (int j = i + i; j <= 1000000; j += i)
{
isPrimeNum[j] = false;
}
}
cin >> t;
while (t--)
{
cin >> n;
int answer = 0;
for (int i = 2; i <= n / 2; ++i)
{
if (isPrimeNum[i] && isPrimeNum[n - i])
{
++answer;
}
}
printf("%d\n", answer);
}
}
|
cs |
주어지는 수가 소수 두개로 조합되는 경우의 수를 구하는 문제인데, 숫자가 주어지는 테스트케이스는 100개라서 미리 어떤수가 소수인지를 구해놔야 한다.
유명한 에라토스테네스의 체를 이용해서 구했으며, 이후 주어지는 숫자마다 n/2까지 검사해서 두 숫자가 소수면 답을 카운팅해주면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 165번 :: 문자열 판별 (0) | 2024.10.25 |
---|---|
[Algorithm] Baekjoon 28707번 : 배열 정렬 (0) | 2024.10.24 |
[Algorithm] Baekjoon 10986번 : 나머지 합 (0) | 2024.10.24 |
[Algorithm] Baekjoon 6087번 : 레이저 통신 (1) | 2024.10.24 |
[Algorithm] Baekjoon 11780번 : 플로이드 2 (0) | 2024.10.23 |