이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define vt vector
#define nl " \n"
#define pb emplace_back
#define all(x) x.begin(), x.end()
template <class _F, class _S>
void chmin(_F &a, _S b) {
if(a > b) a = b;
}
template <class _F, class _S>
void chmax(_F &a, _S b) {
if(a < b) a = b;
}
void run_case() {
int n, k;
cin >> n >> k;
vt<int> t(n);
vt<int> a;
for(int i = 0; i < n; i++) {
cin >> t[i];
}
for(int i = 0; i + 1 < n; i++) {
a.pb(t[i + 1] - t[i]);
}
int ans = t[n - 1] - t[0] + 1;
for(int i = 0; i < k - 1; i++) {
ans -= a[i] - 1;
}
cout << ans << nl;
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int tt = 1;
// cin >> tt;
for(int i = 0; i < tt; i++) {
run_case();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |