結果
| 問題 |
No.1077 Noelちゃんと星々4
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-01 12:34:27 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 14 ms / 2,000 ms |
| コード長 | 594 bytes |
| コンパイル時間 | 888 ms |
| コンパイル使用メモリ | 75,360 KB |
| 最終ジャッジ日時 | 2025-01-12 12:34:16 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
#include <iostream>
#include <algorithm>
#include <vector>
constexpr int X = 10000;
constexpr int INF = 1 << 30;
void solve() {
int n;
std::cin >> n;
std::vector<int> dp(X + 1, 0);
while (n--) {
int y;
std::cin >> y;
int min = INF;
for (int x = 0; x <= X; ++x) {
min = std::min(min, dp[x]);
dp[x] = min + std::abs(y - x);
}
}
std::cout << *std::min_element(dp.begin(), dp.end()) << "\n";
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}