본문 바로가기

백준/다이나믹 프로그래밍

다리놓기

728x90

www.acmicpc.net/problem/1010

 

1010번: 다리 놓기

입력의 첫 줄에는 테스트 케이스의 개수 T가 주어진다. 그 다음 줄부터 각각의 테스트케이스에 대해 강의 서쪽과 동쪽에 있는 사이트의 개수 정수 N, M (0 < N ≤ M < 30)이 주어진다.

www.acmicpc.net

#include<iostream>
#include<vector>
#include <cstring>

using namespace std;

int n, m,t;
long long com[30][30];



// nCr 구하기 

int combi(int n, int r) {
	
	if (n == r) {
		return 1;
	}
	
	if (r == 0 || n == 0) {
		
		return 1;
		
	}

	if (com[n][r] != 0) {
		return com[n][r];
	}

	return  com[n][r] = combi(n - 1, r - 1) + combi(n - 1, r);


}



int main() {
	
	cin >> t;

	long long cnt = 1;
	memset(com, 0, sizeof(com));

	for (int i = 0; i < t; i++) {
		
		cin >> n; cin >> m;

		if (n == m) {
			cout << 1 << endl;
			continue;
		}

		cout << combi(m,n) << endl;
		cnt = 1;
	
	}




}

'백준 > 다이나믹 프로그래밍' 카테고리의 다른 글

성냥깨비  (0) 2021.04.26
퇴사  (0) 2021.04.26
우수 마을 / Tree DP  (0) 2021.04.24
사회망 서비스 / Tree DP  (0) 2021.04.24
LCS  (0) 2021.04.23