# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1054514 | kiryl_krutsko | Safety (NOI18_safety) | C++14 | 2091 ms | 262144 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 - 1; i++) {
cur = input[i];
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 + 1){
if(results[0][j + h] < best_last)
best_last = results[0][j + h];
}
}
results[1][j] = abs(j - cur) + best_last;
//out(&results);
}
results.erase(results.begin());
results.push_back(vector<int>(maxh + 1));
}
cur = input[n - 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 + 1) {
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;
}
Compilation message (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... |