leetcode(리트코드)739-Daily Temperatures
leetcode(리트코드)739-Daily Temperatures
leetcode 739 - Daily Temperatures 문제입니다.
1. 문제
https://leetcode.com/problems/decode-string/https://leetcode.com/problems/daily-temperatures/
2. Input , Output
3. 분류 및 난이도
Medium 난이도 문제입니다.
leetcode Top 100 Liked 문제입니다.
4. 문제 해석
- 온도 벡터가 들어옵니다. 각 인덱스를 기준으로 따뜻해지는 순간이 언제인지 벡터에 넣어 반환합니다.
5. code
c++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution {
public:
vector<int> dailyTemperatures(vector<int>& T) {
vector<int> res(T.size(),0);
stack<pair<int,int>> st;
for(size_t i = 0 ; i <T.size();++i){
if(st.empty())st.push(make_pair(T[i],i));
else{
while(!st.empty() && st.top().first < T[i]){
int index = st.top().second;
res[index] = i - index;
st.pop();
}
st.push(make_pair(T[i],i));
}
}
return res;
}
};
6. 결과 및 후기, 개선점
c++ 95%
This post is licensed under CC BY 4.0 by the author.