이 제출은 이전 버전의 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--)
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;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |