結果

問題 No.1077 Noelちゃんと星々4
ユーザー furafura
提出日時 2020-06-12 22:10:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 202,108 KB
実行使用メモリ 42,820 KB
最終ジャッジ日時 2024-06-24 05:07:02
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 23 ms
31,480 KB
testcase_03 AC 29 ms
39,056 KB
testcase_04 AC 12 ms
15,260 KB
testcase_05 AC 8 ms
11,852 KB
testcase_06 AC 14 ms
17,592 KB
testcase_07 AC 15 ms
20,232 KB
testcase_08 AC 11 ms
16,240 KB
testcase_09 AC 9 ms
13,668 KB
testcase_10 AC 28 ms
39,044 KB
testcase_11 AC 19 ms
26,888 KB
testcase_12 AC 16 ms
22,128 KB
testcase_13 AC 8 ms
11,592 KB
testcase_14 AC 30 ms
38,420 KB
testcase_15 AC 15 ms
22,328 KB
testcase_16 AC 11 ms
17,204 KB
testcase_17 AC 18 ms
25,808 KB
testcase_18 AC 28 ms
40,784 KB
testcase_19 AC 8 ms
11,584 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 31 ms
42,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

const int INF=1<<29;

int main(){
	int n; scanf("%d",&n);
	vector<int> a(n);
	rep(i,n) scanf("%d",&a[i]);

	static int dp[1000][10001];
	rep(i,n) rep(j,10001) dp[i][j]=INF;
	rep(j,10001) dp[0][j]=abs(a[0]-j);
	rep(i,n-1){
		int mn=INF;
		rep(j,10001){
			mn=min(mn,dp[i][j]);
			dp[i+1][j]=min(dp[i+1][j],mn+abs(a[i+1]-j));
		}
	}
	printf("%d\n",*min_element(dp[n-1],dp[n-1]+10001));

	return 0;
}
0