-
Notifications
You must be signed in to change notification settings - Fork 0
/
dpc2.cpp
63 lines (57 loc) · 1.15 KB
/
dpc2.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
#include <iostream>
#include <vector>
#include <cstdlib>
using namespace std;
template <class T>
inline bool chmax(T &a, T b)
{
if (a < b)
{
a = b;
return true;
}
return false;
}
template <class T>
inline bool chmin(T &a, T b)
{
if (a > b)
{
a = b;
return true;
}
return false;
}
// 入力
int N;
long long a[100010][3]; // a[i], b[i], c[i] をそれぞれまとめて a[i][0], a[i][1], a[i][2] にしてしまう
// DP テーブル
long long dp[100010][3];
int main()
{
int N;
cin >> N;
for (int i = 0; i < N; ++i)
for (int j = 0; j < 3; ++j)
cin >> a[i][j];
// 初期化は既に 0 に初期化される
// 初期条件も既に 0 で OK
// ループ
for (int i = 0; i < N; ++i)
{
for (int j = 0; j < 3; ++j)
{
for (int k = 0; k < 3; ++k)
{
if (j == k)
continue;
chmax(dp[i + 1][k], dp[i][j] + a[i][k]);
}
}
}
// 答え
long long res = 0;
for (int j = 0; j < 3; ++j)
chmax(res, dp[N][j]);
cout << res << endl;
}