반응형
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
- el1008e
- parse
- java 여러개 버전
- java 1.8 11
- no sources given
- mac os git error
- error
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- springboottest
- springbatch error
- AWS CLI
- yum install java
- java version
- OpenFeign
- Java 1.8
- easy
- java
- No tests found for given includes
- 스프링부트테스트
- LeetCode
- java 버전 변경
- JUnit
- querydsl no sources given
- aws
- maybe not public or not valid?
- springboot
- Medium
- log error
- property or field 'jobparameters' cannot be found on object of type
- java 11
Archives
- Today
- Total
쩨이엠 개발 블로그
[ Leetcode ] 1561. Maximum Number of Coins You Can Get - Java 본문
728x90
반응형
There are 3n piles of coins of varying size, you and your friends will take piles of coins as follows:
- In each step, you will choose any 3 piles of coins (not necessarily consecutive).
- Of your choice, Alice will pick the pile with the maximum number of coins.
- You will pick the next pile with maximum number of coins.
- Your friend Bob will pick the last pile.
- Repeat until there are no more piles of coins.
Given an array of integers piles where piles[i] is the number of coins in the ith pile.
Return the maximum number of coins which you can have.
Example 1:
Input: piles = [2,4,1,2,7,8]
Output: 9
Explanation: Choose the triplet (2, 7, 8), Alice Pick the pile with 8 coins,
you the pile with 7 coins and Bob the last one.
Choose the triplet (1, 2, 4), Alice Pick the pile with 4 coins,
you the pile with 2 coins and Bob the last one.
The maximum number of coins which you can have are: 7 + 2 = 9.
On the other hand if we choose this arrangement (1, 2, 8), (2, 4, 7)
you only get 2 + 4 = 6 coins which is not optimal.
Example 2:
Input: piles = [2,4,5]
Output: 4
Example 3:
Input: piles = [9,8,7,6,5,1,2,3,4]
Output: 18
Constraints:
- 3 <= piles.length <= 10^5
- piles.length % 3 == 0
- 1 <= piles[i] <= 10^4
Solution
class Solution {
public int maxCoins(int[] piles) {
Arrays.sort(piles);
int answer = 0;
int length = piles.length/3;
for(int i=1; i<= length; i++){
answer += piles[piles.length-2*i];
}
return answer;
}
}
1. piles를 sort한다
2. 제일 큰 수는 앨리스가 가지고 두번째로 큰 수를 내가 가지니까 마지막에서 1개전 것부터 2개전 것을 가져와 더해주면 제일 큰 코인을 가질 수 있다
728x90
반응형
'개발 > Programming' 카테고리의 다른 글
[ Leetcode ] 148. Sort List - Java (0) | 2021.02.10 |
---|---|
[ Leetcode ] 324. Wiggle Sort II - Java (0) | 2021.02.08 |
[ Leetcode ] 763. Partition Labels - Java (0) | 2021.02.03 |
[ Leetcode ] 1630. Arithmetic Subarrays - Java (0) | 2021.02.02 |
[ Leetcode ] 1689. Partitioning Into Minimum Number Of Deci-Binary Numbers - Java (0) | 2021.01.30 |
Comments