# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
482835 | glome | Stove (JOI18_stove) | C++17 | 68 ms | 7148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n,k;
cin >> n >> k;
vector<pair<int, int>> d;
vector<int> y(n);
for (int i = 0; i<n; i++) {
cin >> y[i];
}
for (int i = 0; i<n-1; i++) {
if(y[i] + 1 == y[i + 1]) {
continue;
}
d.push_back({y[i] + 1, y[i+1] - 1});
}
sort(d.begin(), d.end(), [&] (pair<int, int> A, pair<int, int> B) {
return A.second - A.first > B.second - B.first;
});
map<int, bool> mark;
for (int i = k - 1; i<d.size(); i++) {
mark[d[i].first - 1] = 1;
}
int ans = 0;
for (int i = 0; i<n - 1; i++) {
if(mark[y[i]]) {
if(i == 0) {
ans += (y[i + 1] + 1) - y[i];
continue;
}
if(mark[y[i-1]]) {
ans += y[i + 1] - y[i];
}
else {
ans +=( y[i + 1] + 1) - y[i];
}
}
else {
if(i == 0) {
ans++;
continue;
}
if(!mark[y[i-1]]) {
ans++;
}
}
}
if(n == 1) {
ans++;
}
if(n >= 2) {
if(!mark[y[n-2]]) {
ans++;
}
}
cout << ans << '\n';
return 0;
}
컴파일 시 표준 에러 (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... |