結果

問題 No.1077 Noelちゃんと星々4
ユーザー 夜
提出日時 2020-11-12 00:52:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 92,364 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-07-22 18:56:04
合計ジャッジ時間 1,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 39 ms
30,336 KB
testcase_03 AC 44 ms
38,528 KB
testcase_04 AC 17 ms
13,952 KB
testcase_05 AC 11 ms
11,264 KB
testcase_06 AC 18 ms
17,152 KB
testcase_07 AC 20 ms
19,200 KB
testcase_08 AC 15 ms
14,848 KB
testcase_09 AC 13 ms
13,312 KB
testcase_10 AC 49 ms
38,528 KB
testcase_11 AC 29 ms
26,112 KB
testcase_12 AC 24 ms
22,144 KB
testcase_13 AC 11 ms
10,880 KB
testcase_14 AC 43 ms
37,760 KB
testcase_15 AC 29 ms
21,504 KB
testcase_16 AC 16 ms
15,232 KB
testcase_17 AC 27 ms
23,936 KB
testcase_18 AC 44 ms
39,168 KB
testcase_19 AC 10 ms
10,624 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 50 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int dp[1010][10100] = {};
int y[10100];
int main() {
	int n;
	cin >> n;
	for (int i = 1; i <= n; i++) {
		cin >> y[i];
	}
	for (int i = 1; i <= n; i++) {
		int m = 1000000007;
		for (int j = 0; j <= 10010; j++) {
			dp[i][j] += abs(y[i] - j);
			if (m > dp[i - 1][j]) {
				m = dp[i - 1][j];
			}
			dp[i][j] += m;
		}
	}
	int ans = 1000000007;
	for (int i = 0; i <= 10010; i++) {
		if (ans > dp[n][i]) {
			ans = dp[n][i];
		}
	}
	cout << ans << endl;
}
0