이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<bool> vb;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pii> vpii;
typedef vector<pll> vpll;
typedef vector<string> vs;
typedef vector<vb> vvb;
typedef vector<vi> vvi;
typedef vector<vll> vvll;
#define all(x) x.begin(), x.end()
#define rep(i,a,b) for(int i = a; i < b; i++)
int main() {
int N, K;
cin >> N;
cin >> K;
vi gs(N);
rep(n,0,N) cin >> gs[n];
sort(all(gs));
vi gaps(0);
rep(n,0,N-1) {
if(gs[n]+1 < gs[n+1])
gaps.push_back(gs[n+1]-gs[n]-1);
}
sort(all(gaps), greater<>());
int ontime = gs[N-1]-gs[0]+1;
rep(k,0,K-1) ontime -= gaps[k];
cout << ontime << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |