-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
83 lines (72 loc) · 2.74 KB
/
main.cpp
File metadata and controls
83 lines (72 loc) · 2.74 KB
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
// Source: https://leetcode.com/problems/online-stock-span
// Title: Online Stock Span
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Design an algorithm that collects daily price quotes for some stock and returns **the span** of that stock's price for the current day.
//
// The **span** of the stock's price in one day is the maximum number of consecutive days (starting from that day and going backward) for which the stock price was less than or equal to the price of that day.
//
// - For example, if the prices of the stock in the last four days is `[7,2,1,2]` and the price of the stock today is `2`, then the span of today is `4` because starting from today, the price of the stock was less than or equal `2` for `4` consecutive days.
// - Also, if the prices of the stock in the last four days is `[7,34,1,2]` and the price of the stock today is `8`, then the span of today is `3` because starting from today, the price of the stock was less than or equal `8` for `3` consecutive days.
//
// Implement the `StockSpanner` class:
//
// - `StockSpanner()` Initializes the object of the class.
// - `int next(int price)` Returns the **span** of the stock's price given that today's price is `price`.
//
// **Example 1:**
//
// ```
// Input
//
// ["StockSpanner", "next", "next", "next", "next", "next", "next", "next"]
// [[], [100], [80], [60], [70], [60], [75], [85]]
// Output
//
// [null, 1, 1, 1, 2, 1, 4, 6]
//
// Explanation
//
// StockSpanner stockSpanner = new StockSpanner();
// stockSpanner.next(100); // return 1
// stockSpanner.next(80); // return 1
// stockSpanner.next(60); // return 1
// stockSpanner.next(70); // return 2
// stockSpanner.next(60); // return 1
// stockSpanner.next(75); // return 4, because the last 4 prices (including today's price of 75) were less than or equal to today's price.
// stockSpanner.next(85); // return 6
// ```
//
// **Constraints:**
//
// - `1 <= price <= 10^5`
// - At most `10^4` calls will be made to `next`.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <climits>
#include <stack>
using namespace std;
// Monotonic Stack
//
// Put prices in the monotonic stack.
// The top is the smallest.
class StockSpanner {
using Data = pair<int, int>; // price, day
stack<Data> st;
int now = 0;
public:
StockSpanner() {
st.push(Data{INT_MAX, now}); // sentinel
}
int next(int price) {
++now;
// Maintain stack
while (st.top().first <= price) st.pop();
// Get span
int span = now - st.top().second;
// Push
st.push(Data{price, now});
return span;
}
};