| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 797884 | MVP_Harry | Stove (JOI18_stove) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
#define ll long long
#define rep(i, m, n) for (int i = m; i <= n; i++)
#define per(i, m, n) for (int i = m; i >= n; i--)
#ifndef ONLINE_JUDGE
#include <bits/cp_debug.hpp>
#else
#define dbg(...)
#endif
const int maxn = 1e5 + 5;
int n, k;
int a[maxn];
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> n >> k;
vector<int> d;
cin >> a[1];
rep(i, 2, n) {
cin >> a[i];
d.push_back(a[i] - a[i - 1] - 1);
}
int ans = a[n] - a[1] + 1;
sort(begin(d), end(d), greater<int>());
rep(i, 1, n - 1) {
ans -= d[i - 1];
}
cout << ans << endl;
return 0;
}
