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
- 천등
- 코테
- 맛집
- 3d퍼즐
- 알고리즘테스트
- 서울제빵소
- 게임
- 바질토마토뭐시기
- 발더스3
- 메일우유
- 코딩테스트
- 밥먹고
- 토이프로젝트
- 잠실새내
- 버즈2프로
- javascript
- 취미
- 하스스톤
- LeetCode
- 뜨아거
- 발더스모드
- 눈알빠지겠네
- 노노그램
- 나쫌
- DIY
- 송리단
- 미앤아이
- 누룽지소금빵
- 발더스게이트
- 메탈퍼즐
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 2256. Minimum Average Difference 본문
난이도 [ 🤔 ] Medium
문제 설명
You are given a 0-indexed integer array nums
of length n
.
The average difference of the index i
is the absolute difference between the average of the first i + 1
elements of nums
and the average of the last n - i - 1
elements. Both averages should be rounded down to the nearest integer.
Return the index with the minimum average difference. If there are multiple such indices, return the smallest one.
Note:
- The absolute difference of two numbers is the absolute value of their difference.
- The average of n elements is the sum of the
n
elements divided (integer division) byn
. - The average of
0
elements is considered to be0
.
숫자가 들어있는nums
를index
기준으로 좌우로 나눠서
각각 평균을 낸 후 각 평균의 차이가 가장 작은index
를 리턴하는 것이다.
example1 을 차근 차근 보면 이해가 쉽다.
입출력 예
Example 1:
Input: nums = [2,5,3,9,5,3]
Output: 3
Explanation:
- The average difference of index 0 is: |2 / 1 - (5 + 3 + 9 + 5 + 3) / 5| = |2 / 1 - 25 / 5| = |2 - 5| = 3.
- The average difference of index 1 is: |(2 + 5) / 2 - (3 + 9 + 5 + 3) / 4| = |7 / 2 - 20 / 4| = |3 - 5| = 2.
- The average difference of index 2 is: |(2 + 5 + 3) / 3 - (9 + 5 + 3) / 3| = |10 / 3 - 17 / 3| = |3 - 5| = 2.
- The average difference of index 3 is: |(2 + 5 + 3 + 9) / 4 - (5 + 3) / 2| = |19 / 4 - 8 / 2| = |4 - 4| = 0.
- The average difference of index 4 is: |(2 + 5 + 3 + 9 + 5) / 5 - 3 / 1| = |24 / 5 - 3 / 1| = |4 - 3| = 1.
- The average difference of index 5 is: |(2 + 5 + 3 + 9 + 5 + 3) / 6 - 0| = |27 / 6 - 0| = |4 - 0| = 4.
The average difference of index 3 is the minimum average difference so return 3.
Example 2:
Input: nums = [0]
Output: 0
Explanation:
The only index is 0 so return 0.
The average difference of index 0 is: |0 / 1 - 0| = |0 - 0| = 0.
Constraints
1 <= nums.length <= 105
0 <= nums[i] <= 105
내 솔루션
- for문으로 순회한다.
- 처음엔 좌우로 나눈 배열 a, b를 각각 sum / n 으로 평균을 구했는데, 느리다고 빠꾸.
- 새로운 요소를 a엔 더하고 b엔 빼주면 된다는 로직을 통해 로직을 간소화함.
var minimumAverageDifference = function(nums) {
let minimun = Infinity;
let answer = null;
let aSum = 0;
let bSum = nums.reduce((acc, cur) => acc + cur, 0);
for(let i = 0; i < nums.length; i++) {
aSum += nums[i];
bSum -= nums[i];
const a = Math.floor(aSum / (i + 1));
const b = Math.floor(bSum / (nums.length - i - 1) || 0);
const min = Math.abs(a - b);
if(minimun > min) {
minimun = min;
answer = i;
}
}
return answer;
};
// 너무 느렸음.
// var minimumAverageDifference = function(nums) {
// let minimun = Infinity;
// let answer = null;
// for(let i = 1; i < nums.length+1; i++) {
// const a = Math.floor(nums.slice(0, i).reduce((acc, cur)=>acc+cur,0) / i);
// const b = Math.floor(nums.slice(i).reduce((acc, cur)=>acc+cur,0) / (nums.length - i) || 0);
// const min = Math.abs(a - b);
// if(minimun > min) {
// minimun = min;
// answer = i - 1;
// }
// }
// return answer;
// };
감상평
- 오마이깟? 개빨랐다. 실행할 때, 서버 컨디션이 좋았나?
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 328. Odd Even Linked List (0) | 2022.12.06 |
---|---|
[leetCode/JS] 876. Middle of the Linked List (0) | 2022.12.05 |
[leetCode/JS] 451. Sort Characters By Frequency (0) | 2022.12.03 |
[leetCode/JS] 1657. Determine if Two Strings Are Close (0) | 2022.12.02 |
[leetCode/JS] 1704. Determine if String Halves Are Alike (0) | 2022.12.01 |
Comments