Cod sursa(job #2949588)

Utilizator Fantastic_Mantudor voicu Fantastic_Man Data 1 decembrie 2022 01:54:59
Problema Numerele lui Stirling Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.68 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][0][0] = dp[1][0][0] = 1;
    for ( int i = 1; 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;
            dp[1][i][j] = ( ( long long ) dp[1][i - 1][j] * j + dp[1][i - 1][j - 1] ) % mod;
        }

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

    return 0;
}