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
- 스마일게이트
- 카카오
- BFS
- 코딩테스트
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- LIS #Algorithm #요소추적
- 백준
- 1편
- BaekJoon
- 알고리즘
- c++
- 카카오인턴
- Union-find
- 유니온파인드
- Algorithm
- 삼성 #코테 #2020상반기 #c++
- 중반부
- 서버개발캠프
- 소감
- 투포인터
- 코테
- 보석쇼핑
- Smilegate
- 식단
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 496. Next Greater Element I 본문
반응형
이 문제는 아무래도 시간 절약이 관건인 문제라고 생각한다.
운 좋게도, 그냥 완탐으로 풀었는데도 Accepted는 받아냈다.. 하지만 고작 7.46% 성능이 나왔다...또륵
나중에 더 좋은 방법을 생각해보는 걸로...^^
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
|
class Solution {
public:
vector<int> nextGreaterElement(vector<int>& nums1, vector<int>& nums2) {
vector<int> ans;
for(int i=0; i<nums1.size(); i++){
bool check = false;
bool temp = false;
for(int j=0; j<nums2.size(); j++){
if(nums1[i]==nums2[j]){
check = true;
}
if(nums1[i]<nums2[j] && check==true){
ans.push_back(nums2[j]);
temp = true;
break;
}
}
if(temp==false){
ans.push_back(-1);
}
}
return ans;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 48. Rotate Image (0) | 2021.12.19 |
---|---|
LeetCode : 45. Jump Game II (0) | 2021.10.17 |
LeetCode : 463. Island Perimeter(Array) (0) | 2021.07.16 |
LeetCode : 131. Palindrome Partitioning (Backtracking + String) (0) | 2021.02.16 |
LeetCode : 132. Palindrome Partitioning II (BFS+String) (0) | 2021.02.16 |
Comments