hdu 4002 欧拉函数 2011大连赛区网络赛B

题意:求1-n内最大的x/phi(x)

通式:φ(x)=x*(1-1/p1)*(1-1/p2)*(1-1/p3)*(1-1/p4)…..(1-1/pn),其中p1, p2……pn为x的所有质因数,x是不为0的整数。φ(1)=1(唯一和1互质的数就是1本身)。

因此含质因数最多的即为所求,打表求出前n个积,之后找到比自己小的最大积

大数打表

2015-07-27:到此一游

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<algorithm>
 4 #include<cstring>
 5 #include<cmath>
 6 #include<queue>
 7 using namespace std;
 8 int n,m,t;  
 9 char c[][500]=
10 {
11         "2",
12         "6",
13         "30",
14         "210",
15         "2310",
16         "30030",
17         "510510",
18         "9699690",
19         "223092870",
20         "6469693230",
21         "200560490130",
22         "7420738134810",
23         "304250263527210",
24         "13082761331670030",
25         "614889782588491410",
26         "32589158477190044730",
27         "1922760350154212639070",
28         "117288381359406970983270",
29         "7858321551080267055879090",
30         "557940830126698960967415390",
31         "40729680599249024150621323470",
32         "3217644767340672907899084554130",
33         "267064515689275851355624017992790",
34         "23768741896345550770650537601358310",
35         "2305567963945518424753102147331756070",
36         "232862364358497360900063316880507363070",
37         "23984823528925228172706521638692258396210",
38         "2566376117594999414479597815340071648394470",
39         "279734996817854936178276161872067809674997230",
40         "31610054640417607788145206291543662493274686990",
41         "4014476939333036189094441199026045136645885247730",
42         "525896479052627740771371797072411912900610967452630",
43         "72047817630210000485677936198920432067383702541010310",
44         "10014646650599190067509233131649940057366334653200433090",
45         "1492182350939279320058875736615841068547583863326864530410",
46         "225319534991831177328890236228992001350685163362356544091910",
47         "35375166993717494840635767087951744212057570647889977422429870",
48         "5766152219975951659023630035336134306565384015606066319856068810",
49         "962947420735983927056946215901134429196419130606213075415963491270",
50         "166589903787325219380851695350896256250980509594874862046961683989710",
51         "29819592777931214269172453467810429868925511217482600306406141434158090",
52         "5397346292805549782720214077673687806275517530364350655459511599582614290",
53         "1030893141925860008499560888835674370998623848299590975192766715520279329390",
54         "198962376391690981640415251545285153602734402721821058212203976095413910572270",
55         "39195588149163123383161804554421175259738677336198748467804183290796540382737190",
56         "7799922041683461553249199106329813876687996789903550945093032474868511536164700810",
57         "1645783550795210387735581011435590727981167322669649249414629852197255934130751870910",
58         "367009731827331916465034565550136732339800312955331782619462457039988073311157667212930",
59         "83311209124804345037562846379881038241134671040860314654617977748077292641632790457335110",
60         "19078266889580195013601891820992757757219839668357012055907516904309700014933909014729740190",
61         "4445236185272185438169240794291312557432222642727183809026451438704160103479600800432029464270",
62         "1062411448280052319722448549835623701226301211611796930357321893850294264731624591303255041960530",
63         "256041159035492609053110100510385311995538591998443060216114576417920917800321526504084465112487730",
64         "64266330917908644872330635228106713310880186591609208114244758680898150367880703152525200743234420230"
65 };
66 int main()
67 {
68     int i,j,k;
69     //freopen("1.in","r",stdin);
70     scanf("%d",&t);
71     char s[110];
72     while(t--)
73     {
74         scanf("%s",s);
75         int len1=strlen(s);
76         for(i=1;i<60;i++)
77         {
78             int len2=strlen(c[i]);
79             if(len1>len2)   continue;
80             if(len2>len1)   break;
81             if(strcmp(s,c[i])<0)  break;   //比cc里的数小
82         }
83         printf("%s\n",c[i-1]);
84     }
85     return 0;
86 }
时间: 2024-10-07 21:31:53

hdu 4002 欧拉函数 2011大连赛区网络赛B的相关文章

hdu 4002 欧拉函数

题意:求1-n内最大的x/phi(x) 通式:φ(x)=x*(1-1/p1)*(1-1/p2)*(1-1/p3)*(1-1/p4)…..(1-1/pn),其中p1, p2……pn为x的所有质因数,x是不为0的整数.φ(1)=1(唯一和1互质的数就是1本身). 因此含质因数最多的即为所求,打表求出前n个积,之后找到比自己小的最大积 大数打表 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #i

hdu 4006 优先队列 2011大连赛区网络赛F **

签到题都要想一会 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cmath> 6 #include<queue> 7 #include<map> 8 using namespace std; 9 #define MOD 1000000007 10 const int INF=0x3f3

hdu 4005 双联通 2011大连赛区网络赛E *****

题意: 有一幅图,现在要加一条边,加边之后要你删除一条边,使图不连通,费用为边的费用,要你求的是删除的边的最小值的最大值(每次都可以删除一条边,选最小的删除,这些最小中的最大就为答案) 首先要进行缩点,把图缩为一棵树,因此,加入一条边后图就会存在一个环,环中的任何一条边删除后都不会导致图不连通 之后找一条最小的边,可以说这条边肯定是在加边之后的连通块里的,因为如果不在连通块里,那就直接可以把这条最小的边删掉,而达不到求出答案的目的 找到边后,分别从边的两点开始遍历,要遍历出一条路径来,并且边上的

hdu 4004 二分 2011大连赛区网络赛D

题意:一个长为L的河,中间有n个石子,小青蛙需要跳少于m次过河,判断小青蛙每次跳跃最大距离的最小值 最大值最小,用二分 Sample Input 6 1 2 2 25 3 3 11 2 18 Sample Output 4 11 1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cmath> 6 #include

hdu 4003 树形dp+分组背包 2011大连赛区网络赛C

题意:求K个机器人从同一点出发,遍历所有点所需的最小花费 链接:点我 Sample Input 3 1 1 //3个点,从1出发,1个机器人 1 2 1 1 3 1 3 1 2 1 2 1 1 3 1 Sample Output 3 2 转移方程: dp[i][j]=min(dp[i][j],dp[i][j*k],dp[son[i]][k]+len(i,son[i])*k) 方程还是比较好写的,主要是要遍历所有的点 下面我们分析一下第一个样例 1 / \ / \ 2 3 我们派了一个机器人去3,

hdu 4001 dp 2011大连赛区网络赛A

题意:给一些指定长宽高的砖,求能累出的最大高度,不同砖有不同编号,每种编号对下面的砖做出了限制 dp 注意输出要用%I64d,否则会wa,以后不用%lld了 Sample Input 3 10 10 12 0 10 10 12 1 10 10 11 2 2 10 10 11 1 10 10 11 1 0Sample Output 24 11 #include<cstdio> #include<iostream> #include<algorithm> #include&

hdu 6390 欧拉函数+容斥(莫比乌斯函数) GuGuFishtion

http://acm.hdu.edu.cn/showproblem.php?pid=6390 题意:求一个式子 题解:看题解,写代码 第一行就看不出来,后面的sigma公式也不会化简.mobius也不会 就自己写了个容斥搞一下(才能维持现在的生活) //别人的题解https://blog.csdn.net/luyehao1/article/details/81672837 #include <iostream> #include <cstdio> #include <cstr

HDU 4002 Find the maximum (欧拉函数-积性函数的性质(2011年大连赛区网络赛第二题)

[题目链接]:click here~~ [题目大意]: 给出一个整数n,求一个数x,x在1到n之间,并且x/φ(x)最大(其中φ(x)为x的欧拉函数). [思路]: 由欧拉函数为积性函数,即:如果 则有: 且: 则有: 要使f(x)最大,须使x含尽量多的不同素数因子. 代码: /* * Problem: HDU No.4002 * Running time: 1700MS * Complier: java * Author: javaherongwei * Create Time: 0:08 2

hdu 3307(欧拉函数+好题)

Description has only two Sentences Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 1071    Accepted Submission(s): 323 Problem Description an = X*an-1 + Y and Y mod (X-1) = 0.Your task is to cal