# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
718467 | shoryu386 | Stove (JOI18_stove) | C++17 | 56 ms | 2800 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
main(){
int n, k; cin >> n >> k; int arr[n];
for (int x= 0; x < n; x++) cin >> arr[x];
sort(arr, arr+n);
int ans = arr[n-1] - arr[0] + 1;
vector<int> diffs;
for (int x = 1; x < n; x++){
diffs.push_back(arr[x] - arr[x-1] - 1);
}
sort(diffs.begin(), diffs.end());
int cnt = 1;
for (int x = diffs.size()-1; x > -1; x--){
if (cnt == k) break;
cnt++;
ans -= diffs[x];
if (cnt == k) break;
}
cout << ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |