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
- C
- 2294
- RVO
- UE5
- algorithm
- GeeksForGeeks
- softeer
- UnrealEngine4
- 1563
- 프로그래머스
- baekjoon
- 오블완
- DirectX11
- DeferredRendering
- UnrealEngine5
- winapi
- 팰린드롬 만들기
- NRVO
- Unreal Engine5
- 백준
- Frustum
- 줄 세우기
- 언리얼엔진5
- const
- RootMotion
- directx
- Programmers
- 티스토리챌린지
- IFileDialog
- C++
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 7453번 : 합이 0인 네 정수 본문
https://www.acmicpc.net/problem/7453
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
|
#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;
// 수 최대 2.68억... n 최대 4천...
int n;
int arr[4][4001] = { 0 };
long long answer = 0;
vector<int> first;
vector<int> second;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < 4; ++j)
{
cin >> arr[j][i];
}
}
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
first.push_back(arr[0][i] + arr[1][j]);
second.push_back(arr[2][i] + arr[3][j]);
}
}
sort(first.begin(), first.end());
sort(second.begin(), second.end());
for (int i = 0; i < first.size(); ++i)
{
int secondLowerIndex = lower_bound(second.begin(), second.end(), -first[i]) - second.begin();
int secondUpperIndex = upper_bound(second.begin(), second.end(), -first[i]) - second.begin();
int targetCount = secondUpperIndex - secondLowerIndex;
answer += targetCount;
}
cout << answer;
}
|
cs |
중간에서만나기... 라는 Middle meet 알고리즘을 활용하는 문제다.
예~~전에 관련 문제를 풀었던 적이 있어서 접근을 잘 했는데, 체크를 map으로 했더니 메모리 초과가 났다;;
그래도 map으로 카운팅하는게 더 빨리 알아낼 수 있긴한데 문제조건이 시간제한이 넉넉하다보니 그냥 벡터로 그때그때 lower_bound랑 upper_bound로 개수 알아내는게 이 문제에 있어선 더 싸게 먹히는 것 같다.