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
- 재귀
- 자료구조
- 그리디 알고리즘
- c++
- Unreal Engine 5
- 유니온 파인드
- 그래프
- 브루트포스
- 백준
- 스택
- 구현
- Team Fortress 2
- BFS
- 유니티
- 다익스트라
- 문자열
- 누적 합
- 트리
- ue5
- 투 포인터
- 다이나믹 프로그래밍
- 시뮬레이션
- 정렬
- VR
- XR Interaction Toolkit
- 백트래킹
- 알고리즘
- 우선순위 큐
- DFS
- 수학
Archives
- Today
- Total
1일1알
백준 2467번 용액 C++ 본문
투 포인터를 이용해서 풀었다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin >> n;
vector<int> v(n);
for (int i = 0; i < n; i++) {
cin >> v[i];
}
int left = 0;
int right = n - 1;
int ans1 = v[left];
int ans2 = v[right];
int sum = abs(v[left] + v[right]);
while (left < right) {
int currSum = v[left] + v[right];
if (abs(currSum) < sum) {
ans1 = v[left];
ans2 = v[right];
sum = abs(currSum);
}
if (currSum == 0)
break;
if (currSum < 0)
left++;
else
right--;
}
cout << ans1 << " " << ans2;
}
'알고리즘' 카테고리의 다른 글
백준 1806번 부분합 C++ (0) | 2022.07.03 |
---|---|
백준 1197번 최소 스패닝 트리 C++ (0) | 2022.07.02 |
백준 2166번 다각형의 면적 C++ (0) | 2022.06.30 |
백준 10830번 행렬 제곱 C++ (0) | 2022.06.29 |
백준 2638번 치즈 C++ (0) | 2022.06.28 |