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

BZOJ1053 [HAOI2007]反素数ant

时间:2015-08-01 06:23:04      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

有一定的结论需要知道、、、

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 using namespace std;
 5 typedef long long LL;
 6 LL ans,ans1,n,prime[8] = {2,3,5,7,11,13,17,19};
 7 void dfs(int id,int mmax,LL t,LL tt)
 8 {
 9     if(id>=8){return;}
10 
11     for(int i = 1;i<=mmax;++i){
12         t*=prime[id];
13         if(t>n)return;
14         if(tt*(i+1)>ans1)ans1 = tt*(i+1),ans = t;
15         if(tt*(i+1)==ans1)ans = min(t,ans);
16         dfs(id+1,i,t,tt*(i+1));
17     }
18 }
19 int main()
20 {
21     cin>>n;
22     ans = 0,ans1 = 1;
23     dfs(0,25,1,1);
24     cout<<ans<<endl;
25     return 0;
26 }

 

BZOJ1053 [HAOI2007]反素数ant

标签:

原文地址:http://www.cnblogs.com/GJKACAC/p/4693542.html

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