Submission #769192

#TimeUsernameProblemLanguageResultExecution timeMemory
769192AndreyStove (JOI18_stove)C++14
100 / 100
16 ms2324 KiB
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); long long n,k,ans = 0,a,b; cin >> n >> k >> a; ans = n; vector<long long> haha(0); for(long long i = 0; i < n-1; i++) { cin >> b; haha.push_back(b-a-1); a = b; } sort(haha.begin(),haha.end()); for(long long i = 0; i < n-k; i++) { ans+=haha[i]; } cout << ans; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...