일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Database
- Algorithm
- 동적 계획법
- frontend
- 백준
- CS
- Redux
- java
- Javascript
- Graph
- TypeScript
- 그레이들
- network
- 프로그래머스
- git
- 안드로이드
- Data Structure
- DP
- Python
- VIM
- 다이나믹 프로그래밍
- BFS
- LeetCode
- vscode
- 알고리즘
- 리트코드
- DFS
- db
- 자바
- react
Archives
- Today
- Total
늘 겸손하게
문제 2798 ( C++ ) 본문
brute force method 으로 해결하는 문제
코드
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
|
#include <iostream>
#include <set>
using namespace std;
int main(void) {
set<int> s;
int N , M;
cin >> N >> M;
int * arr = (int*)malloc( sizeof(int) * N );
for (int i = 0; i < N ; i++ ) {
cin >> arr[i];
}
for (int i = 0; i < N-2 ; i++ ) {
for (int j = i + 1 ; j < N - 1 ; j++ ) {
for ( int z = j + 1 ; z < N ; z++ ) {
int sum = arr[i] + arr[j] + arr[z];
s.insert(sum);
}
}
}
set<int>::iterator iter;
int best = M;
while ( 1 ) {
iter = s.find(best);
if ( iter != s.end() ) break;
best--;
}
cout << *iter;
free(arr);
arr = NULL;
}
|
cs |
코드 설명
정수형 집합 s 와 길이 N 인 정수형 배열을 동적할당으로 생성한다
brute force method 으로 N 개의 정수가 주어졌을때 서로 다른 3장을 뽑아 만들 수 있는 합의 경우를 집합 s 에 삽입한다.
M에 최대한 가까운 3장의 합을 출력하면 되므로 중복된 값은 필요하지 않으므로 집합에 삽입한것
지시자(iterator)를 이용하여 M에 최대한 가까운 합을 찾는다
답을 출력
결과
'코딩 문제 > 백준' 카테고리의 다른 글
문제 1931 ( C++) (0) | 2021.07.03 |
---|---|
문제 11047 ( C++ ) (0) | 2021.07.02 |
문제 15649 ( C++ ) (0) | 2021.06.29 |
문제 10870 ( C++ / Python ) (0) | 2021.06.29 |
문제 10872 (0) | 2021.06.28 |