zoukankan      html  css  js  c++  java
  • Luogu1655 小朋友的球 (组合数学,第二类斯特林数,高精)

    我bingoyes再高精用STL就饿死,死外边!


    string真的爽。。。
    斯特林数模板题:(S(n,m) = S(n-1,m-1)+S(n-1,m)*n)

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #define R(a,b,c) for(register int  a = (b); a <= (c); ++ a)
    #define nR(a,b,c) for(register int  a = (b); a >= (c); -- a)
    #define Max(a,b) ((a) > (b) ? (a) : (b))
    #define Min(a,b) ((a) < (b) ? (a) : (b))
    #define Fill(a,b) memset(a, b, sizeof(a))
    #define Abs(a) ((a) < 0 ? -(a) : (a))
    #define Swap(a,b) a^=b^=a^=b
    #define ll long long
    
    #define ON_DEBUG
    
    #ifdef ON_DEBUG
    
    #define D_e_Line printf("
    
    ----------
    
    ")
    #define D_e(x)  cout << #x << " = " << x << endl
    #define Pause() system("pause")
    #define FileOpen() freopen("inn.txt","r",stdin);
    
    #else
    
    #define D_e_Line ;
    #define D_e(x)  ;
    #define Pause() ;
    #define FileOpen() ;
    
    #endif
    
    struct ios{
        template<typename ATP>ios& operator >> (ATP &x){
            x = 0; int f = 1; char c;
            for(c = getchar(); c < '0' || c > '9'; c = getchar()) if(c == '-')  f = -1;
            while(c >= '0' && c <= '9') x = x * 10 + (c ^ '0'), c = getchar();
            x*= f;
            return *this;
        }
    }io;
    using namespace std;
    
    const int N = 1007;
    
    int a[N], b[N];
    string add(string A, string B){
    	string S;
    	Fill(a, 0), Fill(b, 0);
    	int lenA = A.size(), lenB = B.size();
    	R(i,0,lenA - 1) a[i] = A[lenA - i - 1] ^ '0';
    	R(i,0,lenB - 1) b[i] = B[lenB - i - 1] ^ '0';
    	int len = Max(lenA, lenB);
    	R(i,0,len - 1){
    		a[i] += b[i];
    		a[i + 1] += a[i] / 10;
    		a[i] %= 10;
    	}
    	if(a[len]) ++len;
    	nR(i,len - 1,0) S += a[i] + '0';
    	return S;
    }
    
    string mul(string A, int B){
    	string S;
    	int len = A.size();
    	Fill(a, 0);
    	R(i,0,len - 1) a[i] = A[len - i - 1] ^ '0';
    	int res = 0;
    	R(i,0,len - 1){
    		a[i] = a[i] * B + res;
    		res = a[i] / 10;
    		a[i] = a[i] % 10;
    	}
    	while(res){
    		a[len++] = res % 10;
    		res /= 10;
    	}
    	nR(i,len - 1, 0) S += a[i] + '0';
    	return S;
    }
    string f[107][107];
    int n, m;
    int main(){
    	//FileOpen();
    	
        R(i,1,100)
        	f[i][1] = "1";
        R(i,2,100){
        	R(j,1,i){
        		f[i][j] = add(f[i - 1][j - 1], mul(f[i - 1][j], j));
        	}
        }
        while(~scanf("%d%d", &n, &m)){
        	if(n < m)
    			printf("0
    ");
        	else
        		cout << f[n][m] << "
    ";
        }
        	
        return 0;
    }
    

  • 相关阅读:
    border-radius的8个属性值_画半圆、叶子等
    CSS的background简写方式(转)
    frameset左右栏锚点定位实例
    HTML5新增
    安装MSI报2503的错误
    当前标识(IIS APPPOOLDefaultWebSite)没有对“C:WindowsMicrosoft.NETFramework64v2.0.50727Temporary ASP.NET Files”的写访问权限 解决方案
    Windows设置相关性AFFINITY,修改使用核心数
    Yaml格式文件处理
    Vs2017离线安装包制作
    Vs2017常用快捷键
  • 原文地址:https://www.cnblogs.com/bingoyes/p/11234383.html
Copyright © 2011-2022 走看看