HDU5139 Formula (找規律+離線處理)

bigbigship發表於2014-12-11

題目連結:

http://acm.hdu.edu.cn/showproblem.php?pid=5139


分析:

直接暴力求很明顯會超時,因此我們想到了打表但是把表打下來發現超記憶體了,由於資料有從小到大遞推的關係,

可以對資料進行離線處理,排好序之後從小到大暴力即可


程式碼如下:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
using namespace std;

typedef long long LL;

const int mod = 1000000007;

const int maxn = 100000;

struct nod{
    int id,n;
    bool operator <(const struct nod &tmp) const{
        if(n==tmp.n)
            return id < tmp.id;
        return n<tmp.n;
    }
}a[maxn];

LL ans[maxn];

int main()
{
    int cnt=0,n;
    //freopen("out.txt","w",stdout);
    while(~scanf("%d",&n)){
        a[cnt].id = cnt;
        a[cnt++].n = n;
    }
    sort(a,a+cnt);
    LL tmp = 1, tans = 1,j = 1;
    for(int i = 0;i < cnt; i++){
        for(;j <= a[i].n;j++){
            tmp = tmp*j%mod;
            tans = tans*tmp%mod;
        }
        ans[a[i].id]=tans;
    }
    for(int i=0;i<cnt;i++)
        printf("%lld\n",ans[i]);
}


相關文章