https://www.acmicpc.net/problem/1010

 

1010번: 다리 놓기

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

www.acmicpc.net

#include <iostream>
#include <algorithm>

using namespace std;

int Testcase;
int N,M;
int num[31][31];

int combi(int n, int r){
    if(n==r||r==0){
        return 1;
    }else{
        return num[n][r] = combi(n-1,r-1) + combi(n-1, r);
    }
}

int main(){
    ios_base::sync_with_stdio(0);cin.tie(0);
    freopen("input.txt","r",stdin);
    
    cin>>Testcase;

    for(int t=0;t<Testcase;t++){
        cin>>N>>M;
        cout<<combi(M,N)<<"\n";
    }

    return 0;
}

+ Recent posts