generated from NikiforovAll/leetcode-playground-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path904.fruit-into-baskets.cs
167 lines (165 loc) · 4.04 KB
/
904.fruit-into-baskets.cs
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
using System.Runtime.Versioning;
using System.Linq;
using System;
/*
* @lc app=leetcode id=904 lang=csharp
*
* [904] Fruit Into Baskets
*
* https://leetcode.com/problems/fruit-into-baskets/description/
*
* algorithms
* Medium (42.25%)
* Likes: 751
* Dislikes: 1132
* Total Accepted: 90K
* Total Submissions: 213K
* Testcase Example: '[1,2,1]'
*
* In a row of trees, the i-th tree produces fruit with type tree[i].
*
* You start at any tree of your choice, then repeatedly perform the following
* steps:
*
*
* Add one piece of fruit from this tree to your baskets. If you cannot,
* stop.
* Move to the next tree to the right of the current tree. If there is no tree
* to the right, stop.
*
*
* Note that you do not have any choice after the initial choice of starting
* tree: you must perform step 1, then step 2, then back to step 1, then step
* 2, and so on until you stop.
*
* You have two baskets, and each basket can carry any quantity of fruit, but
* you want each basket to only carry one type of fruit each.
*
* What is the total amount of fruit you can collect with this procedure?
*
*
*
* Example 1:
*
*
* Input: [1,2,1]
* Output: 3
* Explanation: We can collect [1,2,1].
*
*
*
* Example 2:
*
*
* Input: [0,1,2,2]
* Output: 3
* Explanation: We can collect [1,2,2].
* If we started at the first tree, we would only collect [0, 1].
*
*
*
* Example 3:
*
*
* Input: [1,2,3,2,2]
* Output: 4
* Explanation: We can collect [2,3,2,2].
* If we started at the first tree, we would only collect [1, 2].
*
*
*
* Example 4:
*
*
* Input: [3,3,3,1,2,1,1,2,3,3,4]
* Output: 5
* Explanation: We can collect [1,2,1,1,2].
* If we started at the first tree or the eighth tree, we would only collect 4
* fruits.
*
*
*
*
*
*
*
* Note:
*
*
* 1 <= tree.length <= 40000
* 0 <= tree[i] < tree.length
*
*
*/
namespace _904
{
// @lc code=start
public class Solution
{
public int TotalFruit(int[] tree)
{
int first = int.MinValue;
int second = int.MinValue;
int prev = int.MinValue;
int prevIndex = int.MinValue;
int cnt = 0;
int res = int.MinValue;
for (var index = 0; index < tree.Length; index++)
{
var curr = tree[index];
var isNew = curr != first && curr != second;
if (!isNew)
{
cnt++;
}
else if (first == int.MinValue)
{
first = curr;
cnt++;
}
else if (second == int.MinValue)
{
second = curr;
cnt++;
}
else if (isNew)
{
first = prev;
second = curr;
res = Math.Max(res, cnt);
cnt = index - prevIndex + 1;
}
if (curr != prev)
{
prevIndex = index;
prev = curr;
}
}
res = Math.Max(res, cnt);
return res;
}
// brute force with condition optimization
// public int TotalFruit(int[] tree)
// {
// var res = 0;
// for (int i = 0; i < tree.Length && tree.Length - i > res; i++)
// {
// int[] collected = new int[tree.Length];
// int typeCnt = 0;
// int j;
// for (j = i; typeCnt < 3 && j < tree.Length; j++)
// {
// ref var nOfType = ref collected[tree[j]];
// if (nOfType == 0 && typeCnt == 2)
// break;
// if (collected[tree[j]] == 0)
// typeCnt++;
// nOfType++;
// }
// res = Math.Max(res, j - i);
// }
// return res;
// }
}
// @lc code=end
}