Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 보석쇼핑
- 카카오
- 코테
- Smilegate
- LIS #Algorithm #요소추적
- 1편
- 소감
- BaekJoon
- 투포인터
- 카카오인턴
- 유니온파인드
- 삼성 #코테 #2020상반기 #c++
- BFS
- 중반부
- 알고리즘
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 식단
- 코딩테스트
- c++
- 스마일게이트
- Union-find
- 서버개발캠프
- 백준
- Algorithm
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 57. Insert Interval 본문
반응형
중첩된 범위를 가지는 부분을 하나로 합쳐주는 문제였다.
[메인 로직]
가장 핵심 부분이, 만약 [Start, End]로 구성된 배열이 있을 때, End값보다 작거나 같은 Start값을 갖는 또 다른 배열이 있다면
2개의 배열을 합쳐서 하나의 배열로 만들 수 있다.
ex) [2, 4], [3, 6]이라면 4>=3이기 때문에 [2, 6]으로 만들 수 있다.
또한, [2, 5], [3, 4] => [2, 5]이기 때문에 합쳐진 후의 End값은 두 배열의 End값중 큰 값으로 정해지는 것도 고려해야 한다! (내가 틀렸던 부분...^^)
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
|
class Solution {
public:
vector<vector<int>> insert(vector<vector<int>>& intervals, vector<int>& newInterval) {
intervals.push_back(newInterval);
sort(intervals.begin(), intervals.end());
vector<vector<int>> ans;
for(int i=0; i<intervals.size(); i++){
int Start = intervals[i][0];
int End = intervals[i][1];
bool check = false;
for(int j=0; j<ans.size(); j++){
if(ans[j][1]>=Start){
check = true;
if(ans[j][1]<End){
ans[j][1] = End;
}
break;
}
}
if(check==false){
vector<int> temp;
temp.push_back(Start);
temp.push_back(End);
ans.push_back(temp);
}
}
return ans;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 202. Happy Number (0) | 2021.02.04 |
---|---|
LeetCode : 73. Set Matrix Zeroes (0) | 2021.02.03 |
LeetCode : 59. Spiral Matrix II (0) | 2021.02.02 |
LeetCode : 264. Ugly Number II (0) | 2021.01.26 |
LeetCode : 67. Add Binary (0) | 2021.01.24 |
Comments