码迷,mamicode.com
首页 > 其他好文 > 详细

AHOI 2001 质数和分解

时间:2020-05-23 18:23:07      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:预处理   return   int   app   scan   while   bool   c++   ble   

https://www.luogu.com.cn/problem/P2563

完全背包。

预处理出来 \(200\) 以内的素数。

以每个素数为物品进行背包。

时间复杂度:\(O(200\times \sqrt{200}+200\times \frac{200}{\ln 200}+T)\approx O(10576)\)

#include <bits/stdc++.h>
using namespace std;
int n,dp[210];
int zs[210],tot;
bool prime(int x) {
	for(int i=2;i*i<=x;i++)
		if(x%i==0)
			return 0;
	return 1;
}
int main() {
	for(int i=2;i<=200;i++)
		if(prime(i))
		   zs[++tot]=i;//最为暴力的素数筛法
	dp[0]=1;
	for(int i=1;i<=tot;i++)
		for(int j=zs[i];j<=200;j++)
			dp[j]+=dp[j-zs[i]];//完全背包
	while(scanf("%d",&n)==1)
		printf("%d\n",dp[n]);//O(1) 回答
}

AHOI 2001 质数和分解

标签:预处理   return   int   app   scan   while   bool   c++   ble   

原文地址:https://www.cnblogs.com/lajiccf/p/12943459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!