Pagini recente » Cod sursa (job #168125) | Cod sursa (job #823280) | Cod sursa (job #2125642) | Cod sursa (job #3259499) | Cod sursa (job #2949584)
#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 <= nmax; j++ ) {
dp[0][i][j] = ( dp[0][i - 1][j - 1] - ( i - 1 ) * dp[0][i - 1][j] ) % mod;
dp[1][i][j] = ( dp[1][i - 1][j] + j * dp[1][i - 1][j] ) % mod;
}
int q, s, a, b;
fin >> q;
while ( q-- ) {
fin >> s >> a >> b;
fout << dp[s - 1][a][b] << '\n';
}
return 0;
}