일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- kaggle
- attribute
- iterator
- 109. Convert Sorted List to Binary Search Tree
- concurrency
- Convert Sorted List to Binary Search Tree
- Generator
- t1
- Decorator
- 운영체제
- Class
- shiba
- Python Implementation
- 315. Count of Smaller Numbers After Self
- 시바견
- 43. Multiply Strings
- Python
- data science
- LeetCode
- 파이썬
- Python Code
- 30. Substring with Concatenation of All Words
- DWG
- Substring with Concatenation of All Words
- Protocol
- 715. Range Module
- 프로그래머스
- Regular Expression
- 밴픽
- 컴퓨터의 구조
Archives
- Today
- Total
Scribbling
[C++] lower_bound 본문
https://leetcode.com/problems/longest-increasing-subsequence/
class Solution {
public:
int lengthOfLIS(vector<int>& nums) {
vector<int> tmp;
for (int num : nums) {
auto it = lower_bound(tmp.begin(), tmp.end(), num);
if (it == tmp.end()) {
tmp.push_back(num);
} else {
*it = num;
}
}
return tmp.size();
}
};
'Computer Science > C++' 카테고리의 다른 글
[C++] Priority Queue with custom data type (0) | 2024.02.22 |
---|---|
[C++] Abstract Class, Interface, Multiple Inheritance (0) | 2024.02.14 |
[C++] Deque<int> (0) | 2024.02.06 |
[C++] 전문가를 위한 C++ - Chapter 8 (0) | 2023.10.07 |
[C++] find, deque, bfs, structured binding (0) | 2023.09.30 |