시나브로

2470. 두 용액 본문

알고리즘/백준

2470. 두 용액

혬혬 2021. 10. 31. 01:19
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

 

2470번: 두 용액

첫째 줄에는 전체 용액의 수 N이 입력된다. N은 2 이상 100,000 이하이다. 둘째 줄에는 용액의 특성값을 나타내는 N개의 정수가 빈칸을 사이에 두고 주어진다. 이 수들은 모두 -1,000,000,000 이상 1,000,00

www.acmicpc.net

 

 

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