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
- 코테
- SQL
- 코딩테스트
- implement
- 파이썬
- two pointers
- Binary Search
- string
- Method
- Class
- Math
- Binary Tree
- 구현
- Number Theory
- geometry
- hash table
- greedy
- dynamic programming
- bit manipulation
- 자바
- Counting
- simulation
- java
- Matrix
- Stack
- Data Structure
- database
- sorting
- Tree
- array
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2706. Buy Two Chocolates 본문
1. Input
1) int[] prices
2) int money
2. Output
1) money를 넘기지 않는 선에서 초콜릿 2개를 사려고 한다. 이때 초콜릿 2개의 가격의 합은 최소로 한다고 할 때, money를 내고 초콜릿을 사고 난 거스름돈을 반환
2) 만약 초콜릿의 가격이 money를 초과한다면 money를 반환
3. Constraint
1) 2 <= prices.length <= 50
2) 1 <= prices[i] <= 100
3) 1 <= money <= 100
4. Example
Input: prices = [1,2,2], money = 3 -> Output: 0
Input: prices = [3,2,3], money = 3 -> Output: 3
5. Code
1) 첫 코
class Solution {
public int buyChoco(int[] prices, int money) {
Arrays.sort(prices);
return prices[0]+prices[1]>money ? money : money-prices[0]-prices[1];
}
}
- 70%, 9%
2) sort를 쓰지 않고 다시 풀어본 코드
class Solution {
public int buyChoco(int[] prices, int money) {
int c1 = Math.min(prices[0], prices[1]), c2 = Math.max(prices[0], prices[1]);
for(int i=2 ; i<prices.length ; i++){
if(prices[i]<c1){
c2 = c1;
c1 = prices[i];
} else if(prices[i]<c2)
c2 = prices[i];
}
return c1+c2 > money ? money : money - c1 - c2;
}
}
- 100%, 67%
- 역시 sort가 시간이 많이 걸린다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2716. Minimize String Length (0) | 2023.06.30 |
---|---|
[LeetCode/Easy] 2710. Remove Trailing Zeros From a String (0) | 2023.06.30 |
[LeetCode/Easy] 2697. Lexicographically Smallest Palindrome (0) | 2023.06.30 |
[프로그래머스/Lv.1] 명예의 전당 (1) (0) | 2023.06.30 |
[프로그래머스/Lv.1] 콜라 문제 (0) | 2023.06.30 |