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
- 백준
- 2294
- IFileDialog
- baekjoon
- RVO
- UnrealEngine5
- 프로그래머스
- DeferredRendering
- 줄 세우기
- Programmers
- UE5
- NRVO
- Frustum
- 절두체 크기
- directx
- 팰린드롬 만들기
- 오블완
- 1563
- DirectX11
- C++
- winapi
- UnrealEngine4
- C
- algorithm
- 티스토리챌린지
- GeeksForGeeks
- softeer
- 언리얼엔진5
- RootMotion
- const
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 3649번 :: 로봇 프로젝트 본문
https://www.acmicpc.net/problem/3649
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
64
65
66
67
68
69
70
71
72
73
|
#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 x, n;
int arr[1000001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while (cin >> x >> n)
{
unordered_map<int, int> check;
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
++check[arr[i]];
}
sort(arr, arr + n);
bool dangerCheck = true;
x *= 10000000;
for (int i = 0; i < n; ++i)
{
int first = arr[i];
int second = x - first;
if (first > second) break;
if (first == second && check[first] > 1)
{
dangerCheck = false;
printf("yes %d %d\n", first, second);
break;
}
if (first != second && check[second])
{
dangerCheck = false;
printf("yes %d %d\n", first, second);
break;
}
}
if (dangerCheck)
{
printf("danger\n");
}
}
}
|
cs |
바로 생각난것은 그냥 인풋으로들어온 숫자들을 맵으로 체크해서 바로 구하는 방법.
다만 메모리를 많이사용해야하고 생각보다 시간도 많이걸린다.
자질구레한 검사도 해야하고, 결국 O(1)에 가까운 unordered_map의 참조이지만, 어쨌든 많이해서 그런가보다.
아래는 투포인터코드
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
64
65
66
67
68
69
|
#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 x, n;
int arr[1000001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while (cin >> x >> n)
{
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
}
sort(arr, arr + n);
x *= 10000000;
int left = 0;
int right = n - 1;
bool check = true;
while (left < right)
{
if (arr[left] + arr[right] == x)
{
check = false;
printf("yes %d %d\n", arr[left], arr[right]);
break;
}
if (arr[left] + arr[right] > x)
{
--right;
}
else
{
++left;
}
}
if (check)
{
printf("danger\n");
}
}
}
|
cs |
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 18430번 :: 무기 공학 (0) | 2024.10.30 |
---|---|
[Algorithm]Baekjoon 15661번 :: 링크와 스타트 (0) | 2024.10.30 |
[Algorithm]Baekjoon 13144번 :: List of Unique Numbers (0) | 2024.10.29 |
[Algorithm]Baekjoon 1774번 :: 우주신과의 교감 (0) | 2024.10.28 |
[Algorithm]Baekjoon 2211번 :: 네트워크 복구 (0) | 2024.10.28 |