250x250
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
- 프로그래머스
- 원서
- 완전탐색
- STUDYENGLISH
- 코테
- 원서읽자
- englishbook
- the midnight library
- BFS
- 알고리즘 문제
- 코테 준비
- sw expert
- MySQL
- swexpertacademy
- SQL
- dfs
- PyQt
- 백준
- 알고리즘
- 직무면접
- readingbook
- 코딩테스트
- 코테 대비
- English
- nightroutine
- 쉬운 알고리즘 문제
- D4
- 원서읽기
- 삼성
- sw expert academy
Archives
- Today
- Total
시나브로
2470. 두 용액 본문
728x90
#include <iostream>
#include <queue>
#include <algorithm>
using namespace std;
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
int n;
cin >> n;
vector<int> list;
vector<int> answer(2);
for (int i = 0; i < n; i++) {
int box = 0;
cin >> box;
list.push_back(box);
}
sort(list.begin(), list.end());
int s = 0;
int e = n-1;
long long min = 2000000001;
while (s < e) {
long long sum = list[s] + list[e];
if (min >= abs(sum)) {
min = abs(sum);
answer[0] = list[s];
answer[1] = list[e];
if (sum == 0)
break;
}
if (sum < 0) s++;
else e--;
}
cout << answer[0] << " " << answer[1];
return 0;
}
https://www.acmicpc.net/problem/2470
728x90
'알고리즘 > 백준' 카테고리의 다른 글
17086. 아기 상어 2 (0) | 2021.10.31 |
---|---|
17142. 연구소3 (0) | 2020.10.17 |
19238. 스타트 택시 (0) | 2020.10.17 |
15683. 감시 (0) | 2020.10.15 |
14890. 경사로 (0) | 2020.10.15 |
Comments