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 |
Tags
- Counting
- Method
- Matrix
- 파이썬
- SQL
- 코테
- dynamic programming
- Binary Tree
- Data Structure
- greedy
- Binary Search
- Tree
- implement
- geometry
- string
- array
- Number Theory
- 구현
- Stack
- Class
- 코딩테스트
- 자바
- two pointers
- Math
- hash table
- sorting
- java
- database
- simulation
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1385. Find the Distance Value Between Two Arrays 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1385. Find the Distance Value Between Two Arrays
무지맘 2022. 12. 24. 02:281. Input
1) 정수 배열 arr1
2) 정수 배열 arr2
3) 정수 d
2. Output
1) arr1과 arr2의 거리값 반환
2) 거리값이란 arr1의 요소에 대해 모든 arr2의 요소와의 차의 절댓값이 d보다 큰 arr1의 요소의 개수를 말한다.
3. Constraint
1) 1 <= arr1.length, arr2.length <= 500
2) -1000 <= arr1[i], arr2[j] <= 1000
3) 0 <= d <= 100
4. Example
Input: arr1 = [4,5,8], arr2 = [10,9,1,8], d = 2 -> Output: 2
Explanation:
- arr1[0]=4에 대해서
|4-10|=6 > d=2
|4-9|=5 > d=2
|4-1|=3 > d=2
|4-8|=4 > d=2이므로 OK
- arr1[1]=5에 대해서
|5-10|=5 > d=2
|5-9|=4 > d=2
|5-1|=4 > d=2
|5-8|=3 > d=2이므로 OK
- arr1[2]=8에 대해서
|8-10|=2 == d=2 (X)
|8-9|=1 < d=2 (X)
|8-1|=7 > d=2
|8-8|=0 < d=2 (X)이므로 제외
- 조건을 만족하는 수는 2개이므로 2를 반환한다.
5. Code
1) 첫 코드(2022/07/05)
int count = 0;
for(int i=0 ; i<arr1.length ; i++){
for(int j=0 ; j<arr2.length ; j++){
if(Math.abs(arr1[i]-arr2[j]) <= d){
count--; break;
}
} // for j
count++;
} // for i
return count;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1394. Find Lucky Integer in an Array (0) | 2022.12.24 |
---|---|
[LeetCode/Easy] 1389. Create Target Array in the Given Order (0) | 2022.12.24 |
[LeetCode/Easy] 1365. How Many Numbers Are Smaller Than the Current Number (0) | 2022.12.24 |
[LeetCode/Easy] 1351. Count Negative Numbers in a Sorted Matrix (0) | 2022.12.24 |
[LeetCode/Easy] 1346. Check If N and Its Double Exist (0) | 2022.12.24 |