上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
摘要: Description 给出正整数n和k,计算j(n, k)=k mod 1 + k mod 2 + k mod 3 + … + k mod n的值 其中k mod i表示k除以i的余数。 例如j(5, 3)=3 mod 1 + 3 mod 2 + 3 mod 3 + 3 mod 4 + 3 mod 阅读全文
posted @ 2019-08-17 07:57 Vagari 阅读(194) 评论(0) 推荐(0) 编辑
摘要: Description Given n, calculate the sum LCM(1,n) + LCM(2,n) + .. + LCM(n,n), where LCM(i,n) denotes the Least Common Multiple of the integers i and n. 阅读全文
posted @ 2019-08-17 07:53 Vagari 阅读(138) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.org/problem/P2155 分析 对一个阶乘求欧拉函数,可以想到欧拉函数的一个基本公式: $\varphi (n)=n\prod_{i=1}^k \frac{p_i-1}{p_i}$ 因为阶乘是乘积形式的,所以我将1~m中所有phi都搞出来,给他们的倍数累 阅读全文
posted @ 2019-08-17 07:48 Vagari 阅读(161) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.org/problem/P4318 分析 可以转化为二分m求[1,m]中有多少个无平方因子数 显然可以容斥:0个质数的平方个数-1个质数的平方个数+2个的…… 容易发现容斥系数是莫比乌斯函数 线性筛预处理再二分即可 注意二分l,r,mid可能超出longlong范 阅读全文
posted @ 2019-08-17 07:40 Vagari 阅读(171) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.org/problem/P2467 分析 我们需要搞到一些奇特的性质(都是在合法序列情况下的): 性质1:当i和i+1不相邻时,交换i和i+1是一种可行的方案 性质2:给每个数都变换为n-ai+1,是一种可行方案,且山峰和山谷情况会反过来 性质3:一个合法的序列, 阅读全文
posted @ 2019-08-17 07:25 Vagari 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Description Description Input Output 输出一个整数,为矿工获得所有宝藏的最小代价。 Input Input Output 输出一个整数,为矿工获得所有宝藏的最小代价。 Output 输出一个整数,为矿工获得所有宝藏的最小代价。 Sample Input 2 2 2 阅读全文
posted @ 2019-08-12 07:44 Vagari 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Description Description Input 第1 行为一个正整数N,为理想城区块的数目。 第2 行到第N+1 行,每行有两个非负整数。第i+2 行为第i 个区块的坐标vi = (xi, yi)。 Output 输出仅一行一个正整数,为S 的值。由于S 的值可能较大,你只需输出S mo 阅读全文
posted @ 2019-08-12 07:38 Vagari 阅读(134) 评论(0) 推荐(0) 编辑
摘要: escription escription Input Output Input Input Output Output Sample Input Sample 1: 4 2 3 6 4 9 8 12 1 Sample 2: 20 64978574415886122 263411 405890372 阅读全文
posted @ 2019-08-12 07:34 Vagari 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Description Description Input Output Input Input Output Output Sample Input Sample 1: 4 3 2 1 4 Sample 2: 2 1 2 Sample Output Sample 1: 4 Sample 2: 2 阅读全文
posted @ 2019-08-12 07:32 Vagari 阅读(153) 评论(0) 推荐(0) 编辑
摘要: https://www.luogu.org/problem/P3203 分析 还有个模板不想写题解了,反正这题也差不多是个模板 可以将一个点往后跳跃到的点连起来,跳出去的连到根节点+1,这就是棵树 要求支持删边连边和求根节点到这里的深度?LCT完全可以胜任 就是个板子,深度不用特别思考,Split直 阅读全文
posted @ 2019-08-09 07:39 Vagari 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页