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
- 다익스트라
- BFS
- 재귀
- 문자열
- 구현
- Unreal Engine 5
- 유니온 파인드
- 트리
- 유니티
- ue5
- c++
- 시뮬레이션
- 그리디 알고리즘
- DFS
- 투 포인터
- Team Fortress 2
- VR
- XR Interaction Toolkit
- 스택
- 백트래킹
- 알고리즘
- 수학
- 우선순위 큐
- 브루트포스
- 누적 합
- 자료구조
- 다이나믹 프로그래밍
- 정렬
- 백준
- 그래프
Archives
- Today
- Total
1일1알
백준 14921번 용액 합성하기 C++ 본문
https://www.acmicpc.net/problem/14921
투 포인터
#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 n;
vector<int> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
v = vector<int>(n);
for (int i = 0; i < n; i++) {
cin >> v[i];
}
int left = 0;
int right = n - 1;
int ans = INT_MAX;
while (left < right) {
int val = v[left] + v[right];
if (val < 0) {
left++;
}
else {
right--;
}
if (abs(ans) > abs(val)) {
ans = val;
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 1240번 노드사이의 거리 C++ (0) | 2023.01.29 |
---|---|
백준 13414번 수강신청 C++ (0) | 2023.01.28 |
백준 6068번 시간 관리하기 C++ (1) | 2023.01.26 |
백준 13565번 침투 C++ (0) | 2023.01.25 |
백준 2784번 가로 세로 퍼즐 C++ (0) | 2023.01.24 |