-
Notifications
You must be signed in to change notification settings - Fork 0
/
dpa7.cpp
68 lines (58 loc) · 1.23 KB
/
dpa7.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
#include <vector>
#include <cstdlib>
using namespace std;
template <class T>
inline bool chmin(T &a, T b)
{
if (a > b)
{
a = b;
return true;
}
return false;
}
template <class T>
inline bool chmax(T &a, T b)
{
if (a < b)
{
a = b;
return true;
}
return false;
}
const long long INF = 1LL << 60;
// 入力
int N;
long long h[100010];
// メモ用の DP テーブル
long long dp[100010];
long long rec(int i)
{
// DP の値が更新されていたらそのままリターン
if (dp[i] < INF)
return dp[i];
// 足場 0 のコストは 0
if (i == 0)
return 0;
// i-1, i-2 それぞれ試す
long long res = INF;
chmin(res, rec(i - 1) + abs(h[i] - h[i - 1])); // 足場 i-1 から来た場合
if (i > 1)
chmin(res, rec(i - 2) + abs(h[i] - h[i - 2])); // 足場 i-2 から来た場合
// 結果をメモしながら、返す
return dp[i] = res;
}
int main()
{
int N;
cin >> N;
for (int i = 0; i < N; ++i)
cin >> h[i];
// 初期化 (最小化問題なので INF に初期化)
for (int i = 0; i < 100010; ++i)
dp[i] = INF;
// 答え
cout << rec(N - 1) << endl;
}