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
- 다익스트라
- 그리디 알고리즘
- 정렬
- 그래프
- 다이나믹 프로그래밍
- 누적 합
- 알고리즘
- Team Fortress 2
- 백트래킹
- 유니온 파인드
- 자료구조
- c++
- 구현
- 브루트포스
- 트리
- 유니티
- 재귀
- XR Interaction Toolkit
- BFS
- 우선순위 큐
- DFS
- 백준
- 스택
- Unreal Engine 5
- 시뮬레이션
- 투 포인터
- 수학
- ue5
- VR
- 문자열
Archives
- Today
- Total
1일1알
백준 2212번 센서 C++ 본문
https://www.acmicpc.net/problem/2212
그리디
#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, k;
vector<int> v;
vector<int> dists;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> k;
v = vector<int>(n);
for (int i = 0; i < n; i++) cin >> v[i];
sort(v.begin(), v.end());
for (int i = 1; i < n; i++) {
int dist = v[i] - v[i - 1];
dists.push_back(dist);
}
sort(dists.begin(), dists.end());
int ans = 0;
for (int i = 0; i < n - k; i++) {
ans += dists[i];
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 1699번 제곱수의 합 C++ (0) | 2022.10.08 |
---|---|
백준 17822번 원판 돌리기 C++ (0) | 2022.10.04 |
백준 2473번 세 용액 C++ (0) | 2022.10.02 |
백준 17404번 RGB거리 2 C++ (1) | 2022.09.30 |
백준 2623번 음악프로그램 C++ (0) | 2022.09.27 |