对于一个
练python刷简单题刷到了这个,挺有趣的一道题目。
1
对于一个
有一篇论文介绍得十分详细 链接
故结果应为
代码如下
1 | n=int(input()) |
此方法可以解决这个问题,时间复杂度
2
我暂时不会对上述和式求和,但推测通项可能是或四次的。故希望能
令
1 | >> format rat |
所以代码为此简单的三行
1 | a=int(input()) |
对于一个
练python刷简单题刷到了这个,挺有趣的一道题目。
对于一个
有一篇论文介绍得十分详细 链接
故结果应为
代码如下
1 | n=int(input()) |
此方法可以解决这个问题,时间复杂度
我暂时不会对上述和式求和,但推测通项可能是或四次的。故希望能
令
1 | >> format rat |
所以代码为此简单的三行
1 | a=int(input()) |
第一次用结构体代替dp数组,这个题没有标明树的深度,用数组存二叉树会爆内存。
1 | /** |
好久之前写的,登陆博客看了下好久没更新了,就随手发出来吧。 用这份代码,QT套了个界面设置速度和地图大小。QT的代码就不发了hhh,毕竟源代码分好几个文件 懒 。 用了Windows.h 所以只能在Windows下运行。
1 | #include<Windows.h> |
1 | #include<stdio.h> |
退役后无聊自制了一个游戏...
本想打个2048,限于能力,就照着半成品改成了这个。
Cmd输出太慢有点晃眼。
1 | #include<iostream> |
已经写过本题用二分图的做法,见这儿。
本题的图是一棵树,求最小点覆盖也可以用树形DP的做法。
定义状态f[0/1][u]表示以u为根的子树,u选取/不选最少需要选取多少点来覆盖。
显然 f[0][u] = Sigma{f[1][v]},f[1][u] = Sigma{min(f[0][v],f[1][v])}+1 ( < u,v > 属于G且v!=u.father)
1 | #include<iostream> |
The cows, who always have an inferiority complex about their intelligence, have a new guessing game to sharpen their brains.A designated 'Hay Cow' hides behind the barn and creates N (1 ?? N ?? 1,000,000) uniquely-sized stacks (conveniently numbered 1..N) of hay bales, each with 1..1,000,000,000 bales of hay.The other cows then ask the Hay Cow a series of Q (1 ?? Q ?? 25,000) questions about the the stacks, all having the same form:What is the smallest number of bales of any stack in the range of stack numbers Ql..Qh (1 ?? Ql ?? N; Ql ?? Qh ?? N)?The Hay Cow answers each of these queries with a single integer A whose truthfulness is not guaranteed.Help the other cows determine if the answers given by the Hay Cow are self-consistent or if certain answers contradict others.
???鼯+?????
?????????ì????????
????е??????????????κ??????????????????????????С????????????н????????????????????ì???
??????????????????С?????С???????????ì???
?????????ж?????????С?
???????ì??????????????????????С???С????????鼯?????????????????????????????????????鼯???????????????????????????????????鼯????????????????????????????????????????????????????????????????????????δ????????????????????????????????????ì???
1 | #include<iostream> |
一道数论好题,知识点涉及扩展欧几里得,快速幂,逆元,二项式定理,模运算,组合数等。
(别问为啥打了快速幂不用费马小求逆元...我就练习下扩欧)
(数据就应该再加大些卡掉n^2递推求组合数的)
1 | #include<iostream> |
原题链接
此题求二分图的最小点覆盖,数值上等于该二分图的最大匹配。得知此结论可以将图染色,建有向图,然后跑匈牙利/网络流,如下。然而...
1 | #include<iostream> |
1 | #include<iostream> |
不难发现,如果一个点向上移动一定能控制更多的点,所以可以二分时间,判断是否可行。
但根节点不能不能控制,存在以当前时间可以走到根节点的点,可使向下走到深度为2的节点控制 其他点,此时又可以进行另一个贪心,优先选择走到根节点还能再走的时间小的去控制深度一到二之间边权较小的。
某大佬有更加详尽的讲解,参见这里
1 | #include<iostream> |