NYOJ 505 因子和阶乘
http://acm.nyist.net/JudgeOnline/problem.php?pid=509 题意:中文题目。。。 思路:快速筛即可。。。妈蛋。。。这个oj不能用宏编译==。。。然后一直TLE...去掉了就好了。。sad
/* ***********************************************
Author :111qqz
Created Time :2016年01月20日 星期三 13时53分54秒
File Name :code/nyoj/509.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
const int N=10500;
int n;
int pri[N]={0};
int npri[N]={1,1};
int num[N];
int cnt;
void pre()
{
cnt = 0 ;
for ( int i = 2 ; i < N ; i++)
{
if (!npri[i]) pri[cnt++] = i;
for ( int j = 0 ; j < cnt &&i*pri[j]<N ;j++)
{
npri[i*pri[j]] = 1;
if (!(i%pri[j])) break;
}
}
// for ( int i = 0 ; i <= 100 ; i++) printf("%d ",pri[i]);
}
void solve ( int x)
{
for ( int i = 2 ; i <= x ; i++)
{
int tmp = i;
for ( int j = 0 ; j < cnt ; j++)
{
while (tmp%pri[j]==0)
{
tmp/=pri[j];
num[j]++;
}
if (tmp==1) break;
}
}
for ( int i = 0 ; i < cnt ; i++)
{
if (pri[i]>x) break;
printf("%d ",num[i]);
}
}
int main()
{
#ifndef ONLINE_JUDGE
// freopen("code/in.txt","r",stdin);
#endif
pre();
int T;
cin>>T;
while (T--)
{
ms(num,0);
scanf("%d",&n);
solve(n);
puts("");
}
#ifndef ONLINE_JUDGE
fclose(stdin);
#endif
return 0;
}