HDOJ 2582 f(n) (YY+找规律)

题意

Gcd(n)=gcd(C[n][1],C[n][2],……,C[n][n-1])

f(n)= Gcd(3)+Gcd(4)+…+Gcd(i)+…+Gcd(n).

求f(n)。

思路

刚开始在gcd()的地方想消一下公式看看,发现Gcd(n)好像就等于n,然后python算了一下第二个样例发现不对,后来考虑可能有质因子的话会使gcd更小,就打了一个表,然后发现一共有三种情况:

1.如果n是素数,Gcd(n) = n

2.如果n是有唯一质因子,Gcd(n) = p

3.如果n有多个质因子,Gcd(n) = 1

然后就枚举这1e6个数的质因子的个数就好了。

代码

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
#define LL long long
#define Lowbit(x) ((x)&(-x))
#define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1|1
#define MP(a, b) make_pair(a, b)
const int INF = 0x3f3f3f3f;
const int maxn = 1e6 + 7;
const double eps = 1e-8;
const double PI = acos(-1.0);
LL sum[maxn];
bool vis[maxn];
vector<int> prime;

void init()
{
    for (int i = 2; i * i <= maxn; i++) if (!vis[i])
    {
        prime.push_back(i);
        for (int j = i * 2; j <= maxn; j += i)
            vis[j] = 1;
    }
}

int solve(int n)
{
    int res;
    int cnt = 0;
    for (int i = 2; i * i <= n; i++) if (n % i == 0)
    {
        cnt++, res = i;
        while (n % i == 0) n /= i;
        if (cnt > 1) return 1;
    }
    if (n > 1) cnt++;
    if (cnt > 1) return 1;
    else return res;
}

int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);

    int n;
    init();
    sum[2] = 0;
    for (int i = 3; i <= maxn; i++)         //素数为n,一个质因子为p,多个质因子为1
        if (!vis[i]) sum[i] = sum[i-1] + i;
        else sum[i] = sum[i-1] + solve(i);
    while (cin >> n)
    {
        cout << sum[n] << endl;
    }
    return 0;
}
时间: 2024-10-31 15:25:36

HDOJ 2582 f(n) (YY+找规律)的相关文章

HDOJ 5351 MZL&#39;s Border 找规律

打出前i个串的kmp的fail指针: p: ab 0 0 0 p: aba 0 0 0 1 p: abaab 0 0 0 1 1 2 p: abaababa 0 0 0 1 1 2 3 2 3 p: abaababaabaab 0 0 0 1 1 2 3 2 3 4 5 6 4 5 p: abaababaabaababaababa 0 0 0 1 1 2 3 2 3 4 5 6 4 5 6 7 8 9 10 11 7 8 p: abaababaabaababaababaabaababaabaab

HDOJ 1248 寒冰王座(找规律)

[思路]:找规律,参考的别人的,自己写的挂了.http://blog.csdn.net/appte/article/details/8227632 [AC代码]: #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> using namespace std; int main() { //freopen("in.txt", "r&q

hdoj 2047 阿牛的EOF牛肉串 【找规律】

这道题再一次证明找规律真不是我的强项.... 阿牛的EOF牛肉串 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 20312    Accepted Submission(s): 9528 Problem Description 今年的ACM暑期集训队一共有18人,分为6支队伍.其中有一个叫做EOF的队伍,由04级的阿牛.XC以及05级

找规律/数位DP HDOJ 4722 Good Numbers

题目传送门 1 /* 2 找规律/数位DP:我做的时候差一点做出来了,只是不知道最后的 is_one () 3 http://www.cnblogs.com/crazyapple/p/3315436.html 4 数位DP:http://blog.csdn.net/cyendra/article/details/11606209 5 */ 6 #include <cstdio> 7 #include <iostream> 8 #include <algorithm> 9

hdoj 2277 Change the ball 【找规律】

题目大意:有三不同颜色的球(yellow,blue, red),每两个不同颜色的球在一起就会变成剩下的种的颜色,例如,1个y,1个b 在一起就变成了两个r的.求能不能将给出的三种颜色的球都变成同一种颜色,如果能输出最少的转换步数. 策略:这道题假设有相同的那么显然就是相同的数目,如果没有相同的,如果能转化同一个颜色,那么必有(s - n)%3 == 0,即两种颜色的球的个数差,是3的倍数(仔细想一下),所以 我们排一下序,依次判断就可以了 题目链接 点击打开链接 代码: #include<std

hdoj 1097 A hard puzzle 【找规律】

题目大意:求a^b的最右边的数. 这道题是有规律的 解题报告: http://blog.csdn.net/shengweisong/article/details/38024619  但是注意数据很大,要用64位的整型,被坑了一次.. 题目链接:点击打开链接 代码: #include<stdio.h> int main() { __int64 n, m, i; while(scanf("%I64d%I64d", &n, &m) == 2){ __int64

HDOJ 题目4349 Xiao Ming&#39;s Hope(找规律)

Xiao Ming's Hope Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1515    Accepted Submission(s): 1015 Problem Description Xiao Ming likes counting numbers very much, especially he is fond of co

hdoj 1097 A hard puzzle (找规律)

A hard puzzle                            T   ime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 29231    Accepted Submission(s): 10494 Problem Description lcy gives a hard puzzle to feng5166,lwg,JG

长春理工大学第十四届程序设计竞赛F Successione di Fixoracci——找规律&amp;&amp;水题

题目 链接 题意:给出x数列的定义: $T_0 = a$ $T_1 = b$ $T_n = T_{n-2} \bigoplus T_{n-1} $ 求第 $n$ 项( $0 \leqslant a,b,c \leqslant 10^{18} $) 分析 $n$ 这么大,肯定是常数时间复杂度. 打表找规律,能发现循环节为3. 或者直接推导,$a \bigoplus b = c, \ b \bigoplus c = a, \ c \bigoplus a = b$ #include<bits/stdc