-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19-OnlineStockPan.java
65 lines (57 loc) · 1.35 KB
/
19-OnlineStockPan.java
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
class StockSpanner {
// consider this as two stacks
ArrayList<Integer> prices;
ArrayList<Integer> count;
int li = -1;
public StockSpanner() {
prices = new ArrayList<>();
count = new ArrayList<>();
}
public int next(int price) {
int c = 1;
int i = li;
while (i >= 0) {
if (prices.get(i) <= price) {
int t = count.get(i);
c += t;
i = i - t;
continue;
}
break;
}
prices.add(price);
count.add(c);
li++;
return c;
}
}
// Solution with custom class Pair
// class StockSpanner {
// ArrayList<Pair> prices;
// public StockSpanner() {
// prices = new ArrayList<>();
// }
// public int next(int price) {
// Pair p = new Pair(price, 1);
// int i = prices.size() - 1;
// while( i >= 0){
// Pair t = prices.get(i);
// if(t.price <= price){
// p.count += t.count;
// i = i - t.count;
// continue;
// }
// break;
// }
// prices.add(p);
// return p.count;
// }
// }
// class Pair{
// int price;
// int count;
// public Pair(int p, int c){
// price = p;
// count = c;
// }
// }