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
- Sookmyung Information Security Study
- BOJ Python
- 드림핵
- 머신러닝
- siss
- c
- 숙명여자대학교 정보보안동아리
- 숙명여자대학교 정보보안 동아리
- 백준
- lob
- hackerrank
- XSS Game
- 자료구조 복습
- PHP 웹페이지 만들기
- Javascript
- c++
- 웹페이지 만들기
- 풀이
- The Loard of BOF
- BOJ
- 생활코딩
- WarGame
- C언어
- hackctf
- CSS
- HTML
- 파이썬
- 기계학습
- Python
- SWEA
Archives
- Today
- Total
혜랑's STORY
[HackerRank] Closet Numbers 본문
3주차 자유 문제
Prepare > Algorithms > Sorting
풀이
두 숫자의 차이가 가장 작은 수를 찾는 것이 문제이다. 먼저 숫자가 들어있는 arr을 정렬하고, 양 옆의 숫자들과의 차가 가장 작은 것을 저장해 둔다. 그 다음 두 번째 for문을 통해 가장 적은 차를 만드는 숫자를 찾아 result에 저장한다.
전체적 코드는 다음과 같다.
vector<int> closestNumbers(vector<int> arr) {
int minN;
vector<int> result;
sort(arr.begin(), arr.end());
for(int i=1; i<arr.size(); i++){
minN = min(minN, (arr[i]-arr[i-1]));
}
for(int i=1; i<arr.size(); i++){
if(arr[i] - arr[i-1] == minN){
result.push_back(arr[i-1]);
result.push_back(arr[i]);
}
}
return result;
}
테스트 케이스도 모두 통과하였다.
'2021 SISS 21기 활동 > 2학기 C' 카테고리의 다른 글
[HackerRank] Combo Meal (0) | 2021.10.01 |
---|---|
[HackerRank] Electronics Shop (0) | 2021.10.01 |
[HackerRank] Equal Stacks (0) | 2021.09.24 |
[HackerRank] Jim and the Orders (0) | 2021.09.17 |
[HackerRank] Permuting Two Arrays (0) | 2021.09.17 |