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
- greedy
- Binary Search
- java
- Math
- Class
- 파이썬
- Data Structure
- 자바
- simulation
- two pointers
- 코딩테스트
- 코테
- 구현
- Method
- geometry
- Tree
- database
- implement
- hash table
- SQL
- sorting
- bit manipulation
- dynamic programming
- Number Theory
- Counting
- string
- Stack
- Binary Tree
- Matrix
- array
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1672. Richest Customer Wealth 본문
1. Input
1) 2차원 정수 배열 accounts
- account[i][j]의 값은 i번째 고객의 j번째 은행 예금액이다.
2. Output
1) 각 고객마다 은행의 모든 예금액을 합했을 때, 가장 큰 금액을 반환
3. Constraint
1) m == accounts.length
2) n == accounts[i].length
3) 1 <= m, n <= 50
4) 1 <= accounts[i][j] <= 100
4. Example
Input: accounts = [[1,5],[7,3],[3,5]] -> Output: 10
설명:
- 1번째 고객: 1 + 5 = 6
- 2번째 고객: 7 + 3 = 10
- 3번째 고객: 3 + 5 = 8
- 가장 큰 금액인 10을 반환한다.
5. Code
1) 첫 코드(2022/06/02)
import java.util.Arrays;
int[] wealth = new int[accounts.length];
for(int i=0 ; i<wealth.length ; i++)
for(int j=0 ; j<accounts[i].length ; j++)
wealth[i] += accounts[i][j];
Arrays.sort(wealth);
return wealth[wealth.length-1];
- 속도는 준수했지만 메모리 사용량이 크다.
2) 다시 풀어본 코드(2023/01/02)
int answer = 0;
for(int i=0 ; i<accounts.length ; i++){
for(int j=1 ; j<accounts[0].length ; j++){
accounts[i][0] += accounts[i][j];
}
if(accounts[i][0]>answer) answer = accounts[i][0];
}
return answer;
- 훨씬 빨라지고, 메모리 사용량도 대폭 줄였다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1684. Count the Number of Consistent Strings (0) | 2023.01.02 |
---|---|
[LeetCode/Easy] 1678. Goal Parser Interpretation (0) | 2023.01.02 |
[LeetCode/Easy] 884. Uncommon Words from Two Sentences (0) | 2022.12.30 |
[LeetCode/Easy] 868. Binary Gap (0) | 2022.12.30 |
[LeetCode/Easy] 844. Backspace String Compare (0) | 2022.12.29 |