Taro's summer vacation starts tomorrow, and he has decided to make plans for it now.
The vacation consists of
- A: Swim in the sea. Gain
points of happiness. - B: Catch bugs in the mountains. Gain
points of happiness. - C: Do homework at home. Gain
points of happiness.
As Taro gets bored easily, he cannot do the same activities for two or more consecutive days.
Find the maximum possible total points of happiness that Taro gains.
Constraints
- All values in input are integers.
Input Specification
The first line will contain the integer
The next
Output Specification
Print the maximum possible total points of happiness that Taro gains.
Sample Input 1
Copy
3
10 40 70
20 50 80
30 60 90
Sample Output 1
Copy
210
Explanation For Sample 1
If Taro does activities in the order C, B, C, he will gain
Sample Input 2
Copy
1
100 10 1
Sample Output 2
Copy
100
Sample Input 3
Copy
7
6 7 8
8 8 3
2 5 2
7 8 6
4 6 8
2 3 4
7 5 1
Sample Output 3
Copy
46
Explanation For Sample 3
Taro should do activities in the order C, A, B, A, C, B, A.
Comments
Cannot have same activity for 2 or more days So it means each day have to be unique?