这个题最显眼的地方是10^9的前缀和和已知因子和的结果了,显然需要杜教筛。。
按照杜教筛的套路,我们设结果为F(n),那么
如果直接算空间和时间都承受不住。。需要预处理。。然后又发现一个大麻烦。。
首先可以发现无论是这个函数还是其和函数都不满足积性性质(f(1)!=1),所以需要转换思路。。。
运用莫比乌斯反演可以得到
然后发现f(n)就是三个积性函数的和。。而其中第二项其实就是欧拉函数 (推了半天才发现),第三项其实就是元函数e。。
然后就只剩下第一项了,看来只能用普通积性函数的分析方法分析一波。。令其为g(n),那么f(n)=g(n)-3φ(n)+2e(n)
而
然后就可以线性筛g(n)了,和φ(n)挺类似的其实。。
然后题目又提示了超过10^6的数据不超过5个,所以干脆直接预处理到10^6,也刚好能形成
的复杂度。。
预处理完上杜教筛,解决
functionTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Problem Description There is a function f(x),which is defined on the natural numbers set N,satisfies the following eqaution
Input the first line contains a positive integer T,means the number of the test cases.
Output Tlines,each line contains a number,means the answer to the i-th test case.
Sample Input 1 3
Sample Output 2 $1^2-3*1+2=f(1)=0$ $2^2-3*2+2=f(2)+f(1)=0->f(2)=0$ $3^2-3*3+2=f(3)+f(1)=2->f(3)=2$ $f(1)+f(2)+f(3)=2$
Source BestCoder Round #68 (div.2)
Recommend hujie | We have carefully selected several similar problems for you: 6447 6446 6445 6444 6443
Statistic | Submit | Discuss | Note |
|