组合数学
文章平均质量分 81
处变不惊
这个作者很懒,什么都没留下…
展开
-
poj 2084 Game of Connections
Description This is a small but ancient game. You are supposed to write down the numbers 1, 2, 3, . . . , 2n - 1, 2n consecutively in clockwise order on the ground to form a circle, and then, to dr原创 2016-10-22 12:48:48 · 207 阅读 · 0 评论 -
HDU 莫比乌斯反演 1695 GCD
Problem Description Given 5 integers: a, b, c, d, k, you're to find x in a...b, y in c...d that GCD(x, y) = k. GCD(x, y) means the greatest common divisor of x and y. Since the number of choices ma原创 2016-10-07 19:46:03 · 295 阅读 · 0 评论 -
莫比乌斯反演 传送门
题目描述 给定整数N,求1 数对(x,y)有多少对. 输入 一个整数N 输出 如题 样例输入 4 样例输出 4 解题思路: 这个题目出来可以用欧拉函数来解答之外,点击此处 这是欧拉函数解这道题的思路 那么我们还可以用莫比乌斯反演来做,首先介绍一下莫比乌斯反演的公式: F(n)=∑d|nf(d) ⇒f(n)=∑d|nF(原创 2016-10-07 21:47:49 · 260 阅读 · 0 评论