結果

問題 No.1077 Noelちゃんと星々4
ユーザー mamimume____momamimume____mo
提出日時 2020-07-08 01:14:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 89,592 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-10-01 23:29:14
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 59 ms
56,960 KB
testcase_03 AC 75 ms
72,832 KB
testcase_04 AC 21 ms
24,192 KB
testcase_05 AC 15 ms
19,072 KB
testcase_06 AC 27 ms
30,464 KB
testcase_07 AC 33 ms
34,688 KB
testcase_08 AC 23 ms
25,984 KB
testcase_09 AC 19 ms
22,784 KB
testcase_10 AC 74 ms
72,832 KB
testcase_11 AC 47 ms
48,256 KB
testcase_12 AC 38 ms
40,320 KB
testcase_13 AC 16 ms
18,304 KB
testcase_14 AC 73 ms
71,296 KB
testcase_15 AC 39 ms
39,040 KB
testcase_16 AC 26 ms
26,752 KB
testcase_17 AC 44 ms
44,032 KB
testcase_18 AC 78 ms
74,240 KB
testcase_19 AC 17 ms
17,408 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 82 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <deque>
#include <string>
#include <stack>
#include <vector>
#include <set>
#include <tuple>
#include <utility>
#include <functional>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef tuple<int,int,int> T;
const int INF = 1000000000;
const int MOD = 1000000007;
int main(){
	int n;
	cin >> n;
	vector<ll> y(n);
	for(int i = 0;i < n;i++)cin >> y[i];

	vector<vector<ll>> dp(n+1,vector<ll>(10002,0));
	//dp[i][j]:=i番目までを講義単調増加にしたとき,i番目がj以下であるときの最小コスト

	for(int i = 0;i < n;i++){
		for(int j = 0;j <= 10001;j++){
			dp[i+1][j] = abs(y[i] - (ll)j) + dp[i][j];
		}
		for(int j = 1;j <= 10001;j++){
			dp[i+1][j] = min(dp[i+1][j],dp[i+1][j-1]);
		}
	}

	cout << dp[n][10001] << endl;
}
0