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
- django windows 배포 에러
- APPEND_SLASH = FALSE
- django apache deploy error
- windows 원격 연결 설정
- django settings.py
- 2661 java
- 공유기 원격 설정
- 2643 색종이 올려 놓기
- django 웹 페이지
- 14711 타일 뒤집기
- 2661 좋은 수열
- 2643 java
- The requested operation has failed!
- django 프로젝트 시작
- apache pythonpath
- django The requested operation has failed!
- 원격 연결 포트 포워딩
- Problems occurred while performing provisioning operation
- django
- django httpd error
- 2961 도영이가 만든 맛있는 음식
- 1188 음식 평론가
- 18233 java
- java di
- 18233 러버덕
- 1188 java
- 18233 비트마스킹
- 14711 java
- windows apache wsgi 에러
- 2961 java
Archives
라이브러리는 도서관 아닌가요
백준 (BOJ) 17213 과일 서리 java dp 본문
https://www.acmicpc.net/problem/17213
중복 조합과 dp의 콜라보
N개의 자리를,
N개를 뺀 M개(과일이 최소 하나씩 필요하므로)에 할당하는 문제.
(n) H (m-n) = (n+(m-n)-1) C (m-n) = (m-1) C (m-n) = (m-1) C (n-1)
연산량을 줄이기 위해 계산 시작 전에 판별식을 넣었다.
채점 속도 차이는 없는 듯 하다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int M = Integer.parseInt(br.readLine());
long up = 1;
long down = 1;
int mMinus1 = M-1;
int nMinus1 = N-1;
if(nMinus1 < mMinus1){
int count = nMinus1;
int i = mMinus1;
while (count != 0){
up *= i;
--i;
--count;
}
for(i=1; i<=nMinus1; i++) {
down*= i;
}
}
else{
int count = M-N;
int i = mMinus1;
while (count != 0){
up *= i;
--i;
--count;
}
for(i=1; i<=M-N; i++) {
down*= i;
}
}
System.out.print(up/down);
}
}
처음에 독특하게 접근해서 풀이한 방식
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int M = Integer.parseInt(br.readLine());
if(N == 1){
System.out.print(1);
return;
}
int rowNum = M - N + 1;
int nOfCombination = N - 1;
long[] dp = new long[rowNum];
dp[0] = 1;
for(int rOfCombination=1; rOfCombination<rowNum; ++rOfCombination){
// bigger num check
int nMinus1 = nOfCombination - 1;
long combRst;
// n-1+r C r == n-1+r C n-1
if(nMinus1 < rOfCombination){
combRst = combination(nMinus1 + rOfCombination, nMinus1);
}
else{
combRst = combination(nMinus1 + rOfCombination, rOfCombination);
}
dp[rOfCombination] = dp[rOfCombination-1] + combRst;
}
System.out.print(dp[rowNum-1]);
}
static long factorial(int num){
long rst = 1;
for(; 0<num; --num){
rst *= num;
}
return rst;
}
static long combination(int n, int r){
long rst = 1;
// i == 반복 횟수
int i = r;
while (i != 0){
rst *= n;
--n;
--i;
}
return rst / factorial(r);
}
}
'알고리즘 문제' 카테고리의 다른 글
백준 (BOJ) 13019 A를 B로 java 그리디 (0) | 2022.06.11 |
---|---|
백준 (BOJ) 23351 물주기 java 그리디 (0) | 2022.06.10 |
백준 (BOJ) 21317 징검다리 건너기 java dp (2) | 2022.06.08 |
백준 (BOJ) 2705 팰린드롬 파티션 java dp (0) | 2022.05.10 |
백준 (BOJ) 13023 ABCDE java dfs (0) | 2022.04.29 |
Comments