Uva 1635

题意:

大概就是输出C(n,k)不能整除 m


看来LRJ 的解析,开始不知道输出方式0.0

一直WA ,还以为哪里爆了int,结果.............

可以优化0.0


代码:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
using namespace std;
typedef unsigned long long ULL;
ULL Primes[5000];
ULL Pos[5000];
int Num[100031];
int Count;
ULL N,M;
int GetPos(int k,int P) {
	int ans = 0;
	if(k == 0) return ans;
	else {
		ULL temp = P;
		while(k / temp) {
				ans += k / temp;
				temp *= P;
			}	
		return ans;
	}
}

void GetPrimes(int m) {
	Count = 0;
	memset(Primes,0,sizeof(Primes));
	memset(Pos,0,sizeof(Pos));
	int T = int(sqrt(m+0.5) + 1);
	for(int i = 2; i <= T; ++i) {
		if(m % i == 0) Primes[Count] = i;
		while(m % i == 0) {
			m /= i;
			Pos[Count] ++;
		}
		if(Pos[Count]) Count++;
	}
	if(m >= 2) Primes[Count] = m, Pos[Count++] = 1;
	
	//for(int i = 0; i < Count; ++i) cout << Primes[i] << "  " << Pos[i] << endl;
}

int main() {
	while(cin >> N >> M) {
		GetPrimes(M);
		int pos = 0;
		for(int i = 1; i <= N; ++i) {
			bool jug = true;
			for(int j = 0; j < Count; ++j){
				int k = GetPos(N-1,Primes[j]) - GetPos(i-1,Primes[j]) - GetPos(N-i,Primes[j]);
				if(k < Pos[j]) {
					jug = false;
					break;
				}
			}
			if(jug) Num[pos++] = i;
		}
		cout << pos << endl;
		for(int i = 0; i < pos; ++i) if(i) cout <<" " << Num[i]; else cout << Num[i];
		cout << endl;
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值