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++
- 브루트포스
- 백준
- Team Fortress 2
- 다익스트라
- 백트래킹
- 우선순위 큐
- 그래프
- DFS
- 정렬
- VR
- 수학
- 스택
- 재귀
- 문자열
- 그리디 알고리즘
- 자료구조
- ue5
- XR Interaction Toolkit
- 유니티
- 트리
- 알고리즘
- Unreal Engine 5
- 다이나믹 프로그래밍
- BFS
- 구현
- 유니온 파인드
- 시뮬레이션
Archives
- Today
- Total
1일1알
백준 13164번 행복 유치원 C++ 본문
https://www.acmicpc.net/problem/13164
그리디 알고리즘
#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, k;
cin >> n >> k;
vector<int> v(n);
vector<int> v2;
for (int i = 0; i < n; i++) {
cin >> v[i];
}
for (int i = 1; i < n; i++) {
v2.push_back(v[i] - v[i - 1]);
}
sort(v2.begin(), v2.end());
int64 sum = 0;
for (int i = 0; i < v2.size() - (k - 1); i++) {
sum += v2[i];
}
cout << sum;
}
'알고리즘' 카테고리의 다른 글
백준 15591번 MooTube (Silver) C++ (0) | 2022.11.14 |
---|---|
백준 12919번 A와 B 2 C++ (0) | 2022.11.13 |
백준 1956번 운동 C++ (0) | 2022.11.11 |
백준 14241번 슬라임 합치기 C++ (0) | 2022.11.09 |
백준 11060번 점프 점프 C++ (0) | 2022.11.07 |