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
- 오블완
- UnrealEngine5
- RootMotion
- RVO
- const
- softeer
- 줄 세우기
- IFileDialog
- 2294
- DirectX11
- 언리얼엔진5
- GeeksForGeeks
- 1563
- UnrealEngine4
- directx
- DeferredRendering
- winapi
- algorithm
- baekjoon
- 백준
- 티스토리챌린지
- Unreal Engine5
- C++
- NRVO
- Programmers
- UE5
- 팰린드롬 만들기
- Frustum
- C
- 프로그래머스
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1747번 : 소수&팰린드롬 본문
https://www.acmicpc.net/problem/1747
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
|
int n;
bool isPrimeNum(int n)
{
for (int i = 2; i * i <= n; ++i)
{
if (n % i == 0) return false;
}
return true;
}
bool isPalindrome(int n)
{
string s = to_string(n);
int size = s.size();
int halfSize = s.size() / 2;
for (int i = 0; i < halfSize; ++i)
{
if (s[i] != s[size - 1 - i]) return false;
}
return true;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
if (n == 1) ++n;
while (1)
{
if (isPrimeNum(n) && isPalindrome(n)) break;
++n;
}
cout << n;
}
|
cs |
소수검사를 어떻게하냐에 따라 시간효율이 극명하게 나뉜다.
단순히 저렇게 숫자하나하나 일일이 검사해도 통과는 한다.
다만, 이런 문제같이 여러숫자를 소수인지 판별할 때는 에라토스테네스의 체를 이용하는게 훨씬 빠르다.
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
|
#define MAX 1005000
bool checkPrime[MAX + 1] = { false };
int n;
void sieve()
{
checkPrime[1] = true;
for (int i = 2; i * i <= MAX; ++i)
{
if (checkPrime[i]) continue;
for (int j = i * i; j <= MAX; j += i)
{
checkPrime[j] = true;
}
}
}
bool isPalindrome(int n)
{
string s = to_string(n);
int size = s.size();
int halfSize = s.size() / 2;
for (int i = 0; i < halfSize; ++i)
{
if (s[i] != s[size - 1 - i]) return false;
}
return true;
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
sieve();
while (1)
{
if (!checkPrime[n] && isPalindrome(n)) break;
++n;
}
cout << n;
}
|
cs |
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1717번 :: 집합의 표현 (유니온파인드 기본문제) (0) | 2023.09.13 |
---|---|
[Algorithm] Baekjoon 1652번 : 누울 자리를 찾아라 (0) | 2023.09.10 |
[Algorithm] Baekjoon 17298번 : 오큰수 (0) | 2023.09.09 |
[Algorithm] Baekjoon 6198번 : 옥상 정원 꾸미기 (0) | 2023.09.09 |
[Algorithm] Baekjoon 2493번 : 탑 (0) | 2023.09.08 |