# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
659373 | 600Mihnea | The short shank; Redemption (BOI21_prison) | C++17 | 2088 ms | 2488 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 2000000 + 7;
const int INF = (int) 1e9 + 7;
int n;
int d;
int t;
int trebel[N];
bool block[N];
int gain[N];
int ant[N];
int compute2() {
int sol = 0, last_blocked;
for (int i = 1; i <= n; i++) {
if (ant[i] == 0) {
continue;
}
/// ant[i], i
sol++;
for (int j = ant[i]; j < i; j++) {
if (block[j]) {
sol--;
break;
}
}
}
return sol;
}
int compute() {
int sl = compute2();
int last = INF, sol = 0;
for (int i = 1; i <= n; i++) {
if (block[i - 1]) {
last = trebel[i];
} else {
last = min(last + 1, trebel[i]);
}
sol += (last <= t);
}
assert(sol == sl);
return sol;
}
int main() {
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//freopen ("input.txt", "r", stdin);
cin >> n >> d >> t;
for (int i = 1; i <= n; i++) {
cin >> trebel[i];
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= i; j++) {
if (trebel[j] + i - j <= t) {
ant[i] = j;
}
}
}
for (int iqd = 1; iqd <= d; iqd++) {
int init = compute();
int mx = -1, jj = -1;
for (int i = 1; i < n; i++) {
if (!block[i]) {
block[i] = 1;
gain[i] = init - compute();
assert(gain[i] >= 0);
if (gain[i] >= mx) {
mx = gain[i];
jj = i;
}
block[i] = 0;
}
}
assert(1 <= jj && jj < n);
block[jj] = 1;
}
cout << compute() << "\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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |