반응형
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
- maybe not public or not valid?
- AWS CLI
- no sources given
- java 11
- No tests found for given includes
- Medium
- Java 1.8
- log error
- el1008e
- property or field 'jobparameters' cannot be found on object of type
- error
- parse
- OpenFeign
- 스프링부트테스트
- springboot
- mac os git error
- querydsl no sources given
- springboottest
- java version
- JUnit
- java 1.8 11
- java
- java 여러개 버전
- java 버전 변경
- aws
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- springbatch error
- LeetCode
- easy
- yum install java
Archives
- Today
- Total
쩨이엠 개발 블로그
[ Leetcode ] 1689. Partitioning Into Minimum Number Of Deci-Binary Numbers - Java 본문
개발/Programming
[ Leetcode ] 1689. Partitioning Into Minimum Number Of Deci-Binary Numbers - Java
쩨이엠 2021. 1. 30. 09:48728x90
반응형
A decimal number is called deci-binary if each of its digits is either 0 or 1 without any leading zeros. For example, 101 and 1100 are deci-binary, while 112 and 3001 are not.
Given a string n that represents a positive decimal integer, return the minimum number of positive deci-binary numbers needed so that they sum up to n.
Example 1:
Input: n = "32"
Output: 3
Explanation: 10 + 11 + 11 = 32
Example 2:
Input: n = "82734"
Output: 8
Example 3:
Input: n = "27346209830709182346"
Output: 9
Constraints:
- 1 <= n.length <= 105
- n consists of only digits.
- n does not contain any leading zeros and represents a positive integer.
Solution
import java.math.BigInteger;
class Solution {
public int minPartitions(String n) {
int count = 0;
for(int i=9; i>0; i--){
if(n.indexOf(String.valueOf(i)) > -1){
count = i;
break;
}
}
return count;
}
}
1. 처음엔 1을 n개의 숫자대로 곱해서 나누고 몫을 max에 더한뒤 나머지를 또 나누었는데
숫자가 너무 크게나왔다
2. 생각해보니 굳이 꽉찬 바이너리 값(111111...)으로 할 필요 없이 최대 숫자로 나눌 수 있지 않을까?
어짜피 제일 큰수보다는 크거나 같을 것이다
32 -> 10*3 + 1*2-> 11*2 + 10
8213 -> 1000*8 + 100*2 + 10*1 + 1*3 -> 합치면 어쨌든 8번보단 커야한다 (1000이 최소로 8번 필요하다)
-> 다른건 8에 묻어가면 가능
3. 10진수에서 최대 숫자인 9부터 하나씩 내려가며 작은 것을 찾는다
찾으면 그 값이 최소로 사용하는 count
728x90
반응형
'개발 > Programming' 카테고리의 다른 글
[ Leetcode ] 763. Partition Labels - Java (0) | 2021.02.03 |
---|---|
[ Leetcode ] 1630. Arithmetic Subarrays - Java (0) | 2021.02.02 |
[ Leetcode ] 1409. Queries on a Permutation With Key - Java (0) | 2021.01.30 |
[ Leetcode ] 1476. Subrectangle Queries - Java (0) | 2021.01.29 |
[ Leetcode ] 1470. Shuffle the Array - Java (0) | 2021.01.29 |
Comments