백준_1010 다리 놓기Algorithm/Algorithm 문제2024. 4. 1. 21:53
Table of Contents
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class BJ_1010_다리놓기 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(br.readLine());
int[][] d= new int[31][31];
int i;
for (i=1; i<31; i++) {
d[i][0] = 1;
d[i][1] = i;
d[i][i] = 1;
}
int j;
for (i=2; i<31; i++) {
for (j=2; j<i+1; j++) {
d[i][j] = d[i-1][j-1] + d[i-1][j];
}
}
StringTokenizer st;
StringBuilder sb = new StringBuilder();
int n, m;
for (i=0; i<t; i++) {
st = new StringTokenizer(br.readLine(), " ");
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
sb.append(d[m][n]).append('\n');
}
System.out.println(sb);
}
}
'Algorithm > Algorithm 문제' 카테고리의 다른 글
백준_1722 순열의 순서 (조합 순열) (0) | 2024.04.06 |
---|---|
백준_13251 조약돌 꺼내기 (0) | 2024.04.01 |
백준_2775 부녀회장이 될테야 (조합) (0) | 2024.03.28 |
백준_11051 이항 계수 2 (조합) (0) | 2024.03.26 |
백준_11050 이항 계수 1 (조합) (0) | 2024.03.24 |
@kjyyjk :: 녕의 학습 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!