Uva10820 Send a Table

题目:

When participating in programming contests, you sometimes face the following problem: You know how to calcutale the output for the given input values, but your algorithm is way too slow to ever pass the time limit. However hard you try, you just can’t discover the proper break-off conditions that would bring down the number of iterations to within acceptable limits. Now if the range of input values is not too big, there is a way out of this. Let your PC rattle for half an hour and produce a table of answers for all possible input values, encode this table into a program,
submit it to the judge, et voila: Accepted in 0.000 seconds! (Some would argue that this is cheating, but remember: In love and programming contests everything is permitted). Faced with this problem during one programming contest, Jimmy decided to apply such a ’technique’.
But however hard he tried, he wasn’t able to squeeze all his pre-calculated values into a program small enough to pass the judge. The situation looked hopeless, until he discovered the following property regarding the answers: the answers where calculated from two integers, but whenever the two
input values had a common factor, the answer could be easily derived from the answer for which the input values were divided by that factor. To put it in other words: Say Jimmy had to calculate a function Answer(x, y) where x and y are both integers in the range [1, N]. When he knows Answer(x, y), he can easily derive Answer(k ∗ x, k ∗ y), where k is any integer from it by applying some simple calculations involving Answer(x, y) and k.
For example if N = 4, he only needs to know the answers for 11 out of the 16 possible input value combinations: Answer(1, 1), Answer(1, 2), Answer(2, 1), Answer(1, 3), Answer(2, 3), Answer(3, 2), Answer(3, 1), Answer(1, 4), Answer(3, 4), Answer(4, 3) and Answer(4, 1). The other 5 can be derived from them (Answer(2, 2), Answer(3, 3) and Answer(4, 4) from Answer(1, 1), Answer(2, 4) from Answer(1, 2), and Answer(4, 2) from Answer(2, 1)). Note that the function Answer is not symmetric,
so Answer(3, 2) can not be derived from Answer(2, 3).
Now what we want you to do is: for any values of N from 1 upto and including 50000, give the number of function Jimmy has to pre-calculate.
Input
The input file contains at most 600 lines of inputs. Each line contains an integer less than 50001 which indicates the value of N. Input is terminated by a line which contains a zero. This line should not be processed.
Output
For each line of input produce one line of output. This line contains an integer which indicates how many values Jimmy has to pre-calculate for a certain value of N.
Sample Input
2
5
0
Sample Output
3
19

其实就是求1~n之间共有多少对互质的数(因为除此之外的数对都会由之前互质的数对扩大相应的倍数得到)。
欧拉函数: 小于等于n的数中与n互质的数的数目,而这道题就是求2倍n从2开始到指定值的小于等于n的数中与n互质的数的数目之和(对称性)。外加1(1,1)。

参考代码:

#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
using namespace std;
typedef long long LL;

vector<LL> v;

LL oula(int n) {
    LL ans = n;
    for (int k = 2;k * k <= n;++k) {
        if (n % k == 0) {
            ans = ans / k * (k - 1);
            while (n % k == 0) {
                n = n / k;
            }
        }
    }   
    if (n > 1) ans = ans / n * (n-1);
    return ans;
}

void dabiao() {
    v.push_back(1);//1的欧拉函数是1;
    v.push_back(1);
    LL ans = 0;
    for (int i = 2;i <= 50000;++i) {
        ans += oula(i);
        v.push_back(ans);
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    int n;
    dabiao();
    while (cin >> n) {
        if (n == 0) break;
        if (n == 1) cout << "1" << endl;
        else cout << 2 * v[n] + 1 << endl;
    }
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,891评论 0 23
  • 她偏爱玫瑰 不是因为信息爱情 她只是觉得刺,保护着她的躯壳 可以让她不会受伤 她偏爱眼泪 不是因为伤悲,她只是觉得...
    离惕阅读 221评论 0 5
  • 他在车上打电话 声音轻柔 秘密像春天的风 周围掀起小小的漩涡
    杨沐云舒阅读 297评论 1 4
  • 一束阳光 从我的头顶洒向我的双腿 我差点再也看不见它 幸好 初心一直向我招手 我看见了它 它是我在迷蒙中的一盏明灯...
    Ling_00阅读 315评论 10 11