# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
146580 | jwvg0425 | Safety (NOI18_safety) | C++17 | 135 ms | 2040 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <vector>
#include <queue>
#include <algorithm>
#include <iostream>
#include <string>
#include <bitset>
#include <map>
#include <set>
#include <tuple>
#include <string.h>
#include <math.h>
#include <random>
#include <functional>
#include <assert.h>
#include <math.h>
#define all(x) (x).begin(), (x).end()
#define xx first
#define yy second
#define MOD 998244353
#define BUCKET 700
using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
int n, h;
void h0()
{
vector<int> s(n);
for (int i = 0; i < n; i++)
scanf("%d", &s[i]);
sort(all(s));
int m = s[n / 2];
i64 ans = 0;
for (int i = 0; i < n; i++)
ans += abs(m - s[i]);
printf("%lld\n", ans);
}
int arr[200005];
i64 table[505][405];
int main()
{
scanf("%d %d", &n, &h);
if (h == 0)
{
h0();
return 0;
}
if (n > 500)
{
printf("-1\n");
return 0;
}
for (int i = 0; i < n; i++)
scanf("%d", &arr[i]);
memset(table, -1, sizeof(table));
for (int v = 0; v <= 400; v++)
table[n - 1][v] = 0;
for (int idx = n - 2; idx >= 0; idx--)
{
for (int v = 0; v <= 400; v++)
{
for (int s = max(0, v - h); s <= min(400, v + h); s++)
{
auto now = abs(arr[idx + 1] - s) + table[idx + 1][s];
if (table[idx][v] == -1 || now < table[idx][v])
table[idx][v] = now;
}
}
}
i64 ans = 1ll << 60;
for (int i = 0; i <= 400; i++)
ans = min(ans, abs(i - arr[0]) + table[0][i]);
printf("%lld\n", ans);
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |