Cod sursa(job #2949581)

Utilizator Fantastic_Mantudor voicu Fantastic_Man Data 1 decembrie 2022 01:46:47
Problema Numerele lui Stirling Scor 20
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.75 kb
#include <fstream>

using namespace std;
const int nmax = 200;
const int mod = 98999;
int dp[2][nmax + 1][nmax + 1];
ifstream fin ( "stirling.in" );
ofstream fout ( "stirling.out" );
int main() {
    dp[0][1][1] = 1;
    for ( int i = 2; i <= nmax; i++ )
        for ( int j = 1; j <= i; j++ )
            dp[0][i][j] = ( dp[0][i - 1][j - 1] - ( long long ) ( i - 1 ) * dp[0][i - 1][j] % mod ) % mod;

    dp[1][1][1] = 1;
    for ( int i = 2; i <= nmax; i++ )
        for ( int j = 1; j <= i; j++ )
            dp[1][i][j] = ( dp[1][i - 1][j] + ( long long ) j * dp[1][i - 1][j] % mod ) % mod;

    int q, s, a, b;
    fin >> q;
    while ( q-- ) {
        fin >> s >> a >> b;
        fout << dp[s - 1][a][b] << '\n';
    }

    return 0;
}