# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1053262 | vjudge1 | The short shank; Redemption (BOI21_prison) | C++17 | 31 ms | 5844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#warning That's not the baby, that's my baby
#define debug(x) #x << " = " << x << '\n'
typedef long long ll;
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
#ifdef LOCAL
freopen("input.txt", "r", stdin);
#endif
int n, D, T;
std::cin >> n >> D >> T;
std::vector<int> v;
int start = 0;
int answer = n;
bool atStart = true;
for (int i = 1; i <= n; i++) {
int x;
std::cin >> x;
start = std::min(start + 1, x);
if (x > T) {
if (atStart) {
answer--;
continue;
}
if (start > T) {
v.back()++;
} else {
v.push_back(1);
}
start = T + 1;
} else {
atStart = false;
}
}
std::sort(v.begin(), v.end());
std::reverse(v.begin(), v.end());
for (int i = 0; i < D && i < (int) v.size(); i++) {
answer -= v[i];
}
std::cout << answer;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |