結果

問題 No.1077 Noelちゃんと星々4
ユーザー 沙耶花沙耶花
提出日時 2020-06-12 21:26:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 205,292 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-06-24 04:24:21
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 68 ms
56,832 KB
testcase_03 AC 88 ms
72,704 KB
testcase_04 AC 29 ms
24,064 KB
testcase_05 AC 21 ms
18,816 KB
testcase_06 AC 35 ms
30,336 KB
testcase_07 AC 40 ms
34,560 KB
testcase_08 AC 30 ms
25,984 KB
testcase_09 AC 26 ms
22,784 KB
testcase_10 AC 87 ms
72,960 KB
testcase_11 AC 58 ms
48,128 KB
testcase_12 AC 48 ms
40,320 KB
testcase_13 AC 20 ms
18,048 KB
testcase_14 AC 86 ms
71,168 KB
testcase_15 AC 47 ms
38,912 KB
testcase_16 AC 31 ms
26,624 KB
testcase_17 AC 51 ms
43,776 KB
testcase_18 AC 91 ms
73,984 KB
testcase_19 AC 19 ms
17,408 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 99 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000005



int main(){
	
	int N;
	cin>>N;
	
	vector<int> Y(N);
	for(int i=0;i<N;i++){
		cin>>Y[i];
		Y[i] += 3000;
	}
	
	vector<vector<int>> dp(N,vector<int>(20000,Inf));
	for(int i=0;i<N;i++){
		int mini = Inf;
		for(int j=0;j<20000;j++){
			if(i==0){
				dp[i][j] = abs(Y[i]-j);
			}
			else{
				mini = min(mini,dp[i-1][j]);
				dp[i][j] = min(dp[i][j],mini+abs(Y[i]-j));
			}
		}
	}
	
	int ans = Inf;
	for(int i=0;i<dp.back().size();i++)ans = min(ans,dp.back()[i]);
	
	cout<<ans<<endl;
	
	return 0;
}
0