# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1054481 | kiryl_krutsko | Safety (NOI18_safety) | C++14 | 2100 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <climits>
using namespace std;
void out(vector<vector<int> >* results) {
cout << endl;
for (int i = 0; i < results->size(); i++) {
for (int j = 0; j < results->at(i).size(); j++) {
cout << results->at(i)[j] << " ";
}
cout << endl;
}
}
int main()
{
int n, H;
int maxh = 0;
cin >> n >> H;
vector<int> input;
int in;
for (int i = 0; i < n; i++) {
cin >> in;
if (in > maxh) maxh = in;
input.push_back(in);
}
vector<vector<int> > results(2, vector<int> (maxh + 1));
int cur = input[0];
for (int i = 0; i < maxh + 1; i++) {
results[0][i] = abs(i - cur);
}
for (int i = 1; i < n; i++) {
cur = input[i];
for (int j = 0; j < maxh + 1; j++) {
//out(&results);
int best_last = INT_MAX;
for (int h = H; h >= -H; h--) {
if (j + h >= 0 && j + h < maxh + 1){
if(results[0][j + h] < best_last)
best_last = results[0][j + h];
}
}
results[1][j] = abs(j - cur) + best_last;
}
results.erase(results.begin());
results.push_back(vector<int>(maxh + 1));
}
/*
int best_result = INT_MAX;
for (int j = 0; j < maxh + 1; j++) {
int best_last = INT_MAX;
for (int h = H; h >= -H; h--) {
if (j + h >= 0 && j + h < maxh + 2) {
if (results[0][j + h] < best_last) {
best_last = results[0][j + h];
}
}
}
if (abs(j - cur) + best_last < best_result) best_result = abs(j - cur) + best_last;
}*/
int best_result = INT_MAX;
for (int i = 0; i < maxh + 1; i++) {
if (results[0][i] < best_result) best_result = results[0][i];
}
cout << best_result << endl;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |