Send a Table
Input: 
Standard Input

Output: Standard Output

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 our 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.


题意:

洛谷U5067

题目可以根据f(x,y)用O(1)的算法算出f(x*k,y*k),其中k是任意正整数。所以,某些f函数是没有必要保存的,需要时调出其他的f函数计算下就可以了。

给出N,你需要求出最短的表里有多少个元素。


白书上的题

本质:输入n,有多少个二元组(x,y)满足1<=x,y<=n且x,y互质

设满足x<y的有f(n)个,答案为f(n)*2+1  (1,1)也满足

f(n)=phi(2)+phi(3)+...+phi(n)

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
const int N=5e5+;
int phi[N],s[N],n;
void phiTable(int n){
phi[]=;
for(int i=;i<=n;i++) if(!phi[i])
for(int j=i;j<=n;j+=i){
if(!phi[j]) phi[j]=j;
phi[j]=phi[j]/i*(i-);
}
for(int i=;i<=n;i++)
s[i]=s[i-]+phi[i];
}
int main(){
phiTable(N-);
while(cin>>n){
printf("%d\n",*s[n]-);
}
}

最新文章

  1. java 遍历arrayList的四种方法
  2. 关于sql优化的一个小总结
  3. ASP.NET MVC 多语言实现——URL路由
  4. 【转】Win7 64bit Oracle 11g 使用PL/SQL Developer 连接时提示“SQL*Net not properly installed”
  5. Node学习
  6. iOS集成ijkplayer视频直播框架,遇到的bug和坑...
  7. 谈谈 Google 的 Test Certified
  8. python爬虫利器Selenium使用详解
  9. Spring+SpringMVC+MyBatis+easyUI整合基础篇(六)maven整合SSM
  10. mysql-binlog日志删除
  11. 接口自动化:pytest----环境搭建
  12. 用STS构建spring boot
  13. zabbix添加对centos系统内存使用率百分比的监控
  14. Curator场景应用
  15. Oracle&#160;win32_11gR2_database在Win7下的安装与卸载
  16. Angular4学习笔记(一)-环境搭建
  17. Android Studio安装配置
  18. Python Scrapy安装
  19. React教程-组件
  20. Vue 自动获取最新的Vue文件

热门文章

  1. QQ拼音输入法 该到放弃的时候了
  2. swift学习笔记之-访问控制
  3. 移动web开发介绍——浏览器
  4. [SharePoint] SharePoint 错误集 3
  5. 操作系统开发系列—13.a.进程 ●
  6. Android studio修改Logcat颜色
  7. 【代码笔记】iOS-书架页面
  8. 【读书笔记】iOS网络-理解错误源
  9. 让UILabel的文字顶部对齐
  10. 分页查询的SQL语句