SPOJ Distinct Primes 打表

题目链接http://www.spoj.com/problems/AMR11E/

题目大意:Lucky Number指的是有至少三个不同素数相乘得到数。问1000以内的素因子。

解题思路:可以发现1000以内的满足条件的数字非常多,因此直接筛选打表,查看每个数的不同素因子个数,如果超过三个就满足条件。

代码:

 1 const int maxn = 1e4 + 5;
 2 int vis[maxn];
 3 vector<int> primes, lu;
 4 
 5 void dowork(){
 6     memset(vis, 0, sizeof(vis));
 7     for(int i = 2; i < maxn; i++) if(!vis[i])
 8         for(int j = i * i; j < maxn; j += i)
 9             if(j > 0) vis[j] = 1;
10     for(int i = 2; i < maxn; i++)
11         if(!vis[i]) primes.push_back(i);
12 } 
13 void solve(){
14     dowork();
15     memset(vis, 0, sizeof(vis));
16     int cnt = 0;
17     for(int i = 0; i < primes.size(); i++){
18         for(int j = 2; j < maxn; j++){
19             if(vis[j] >= 3) continue;
20             int tmp = 0, x = j;
21             while(x % primes[i] == 0 && x) {
22                 tmp = 1; x /= primes[i];
23             }
24             if(tmp) vis[j]++;
25         }
26     }
27     for(int i = 2; i < maxn; i++) 
28         if(vis[i] >= 3) lu.push_back(i);
29 }
30 int main(){
31     ios::sync_with_stdio(false);
32     int t;
33     solve();
34     cin >> t;
35     while(t--){
36         int n;
37         cin >> n;
38         cout << lu[n - 1] << endl;
39     }
40 }

题目:

Distinct Primes

 

Arithmancy is Draco Malfoy's favorite subject, but what spoils it for him is that Hermione Granger is in his class, and she is better than him at it. Prime numbers are of mystical importance in Arithmancy, and Lucky Numbers even more so. Lucky Numbers are those positive integers that have at least three distinct prime factors; 30 and 42 are the first two. Malfoy's teacher has given them a positive integer n, and has asked them to find the n-th lucky number. Malfoy would like to beat Hermione at this exercise, so although he is an evil git, please help him, just this once. After all, the know-it-all Hermione does need a lesson.

Input

The first line contains the number of test cases T. Each of the next T lines contains one integer n.

Output

Output T lines, containing the corresponding lucky number for that test case.

Constraints

1 <= T <= 20
1 <= n <= 1000

Example

Sample Input:
2
1
2

Sample Output:
30
42

转载于:https://www.cnblogs.com/bolderic/p/7395611.html

洛谷的SPOJ需要注册一个SPOJ账号并进行绑定才能进行交题。您可以按照以下步骤进行注册: 1. 打开洛谷网站(https://www.luogu.com.cn/)并登录您的洛谷账号。 2. 在网站顶部导航栏中找到“题库”选项,将鼠标悬停在上面,然后选择“SPOJ”。 3. 在SPOJ页面上,您会看到一个提示,要求您注册SPOJ账号并进行绑定。点击提示中的链接,将会跳转到SPOJ注册页面。 4. 在SPOJ注册页面上,按照要求填写您的用户名、密码和邮箱等信息,并完成注册。 5. 注册完成后,返回洛谷网站,再次进入SPOJ页面。您会看到一个输入框,要求您输入刚刚注册的SPOJ用户名。输入用户名后,点击“绑定”按钮即可完成绑定。 现在您已经成功注册并绑定了SPOJ账号,可以开始在洛谷的SPOJ题库上刷题了。祝您顺利完成编程练习!\[1\]\[2\] #### 引用[.reference_title] - *1* *3* [(洛谷入门系列,适合洛谷新用户)洛谷功能全解](https://blog.csdn.net/rrc12345/article/details/122500057)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [luogu p7492 序列](https://blog.csdn.net/zhu_yin233/article/details/122051384)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值