题目: Mr. Panda is one of the top specialists on number theory all over the world. Now Mr. Panda is investigating the property of the powers of 2. Since ...
分类:
其他好文 时间:
2018-10-06 16:39:54
阅读次数:
158
题目: Here is World Cup again, the top 32 teams come together to fight for the World Champion. The teams are assigned into 8 groups, with 4 teams in eac ...
分类:
其他好文 时间:
2018-10-06 16:31:15
阅读次数:
196
A Gym 101194A Number Theory Problem B Gym 101194B Hemi Palindrome C Gym 101194C Mr. Panda and Strips D Gym 101194D Ice Cream Tower E Gym 101194E Bet F ...
分类:
其他好文 时间:
2018-10-06 15:35:45
阅读次数:
387
A. Thickest Burger B. Relative atomic mass C. Recursive sequence D. Winning an Auction E. Counting Cliques F. Similar Rotations G. Do not pour out H. ...
分类:
其他好文 时间:
2018-10-05 21:05:48
阅读次数:
185
A. Thickest Burger 1000ms 262144K ACM ICPC is launching a thick burger. The thickness (or the height) of a piece of club steak is AAA (1≤A≤100)(1 \le ...
分类:
其他好文 时间:
2018-10-05 18:48:24
阅读次数:
149
Portal qwq(貌似是。。2014 ACM/ICPC Asia Regional Beijing Online E) Description 有$n$个房间,每个房间里面可能有一些其他房间的钥匙,初始的时候所有的房门都是锁上的,随机炸门,问期望炸多少次才能打开所有的房间 数据范围:$n inc ...
分类:
其他好文 时间:
2018-10-05 17:22:09
阅读次数:
200
题目链接:https://nanti.jisuanke.com/t/31001 题目大意:给出一个含有n个点m条边的带权有向图,求1号顶点到n号顶点的最短路,可以使<=k条任意边的权值变为0。 样例输入 复制 样例输出 复制 3解题思路:可以用两种做法,不过都差不多,应该算是同一种思路的不同写法。第 ...
分类:
其他好文 时间:
2018-10-05 13:49:04
阅读次数:
152
题意:Bob和Alice在一张有向无环图上移动,给定二者的起点,Bob先手.Bob的失败条件是不能移动或者与Alice相遇.两个人都采取最优策略,求Bob是否会赢 分析:银牌题.先确定所有的失败状态,然后根据这些反向状态BFS. 用$dp[i][j][0or1]$表示bob在i点,Alice在j点, ...
分类:
移动开发 时间:
2018-10-05 13:48:57
阅读次数:
201
题意:到一个城市得钱,离开要花钱。开始时有现金。城市是环形的,问从哪个开始,能在途中任意时刻金钱>=0; 一个开始指针i,一个结尾指针j。指示一个区间。如果符合条件++j,并将收益加入sum中(收益可能是负数)。不符合就++i,并从sum中退掉收益直到sum>=0;区间长度为n时i的位置就是结果。 ...
分类:
其他好文 时间:
2018-10-05 12:17:02
阅读次数:
157
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6229 参考题解:https://blog.csdn.net/lifelikes/article/details/78452558 https://www.cnblogs.com/cxhscst2/p/8 ...
分类:
其他好文 时间:
2018-10-05 10:50:39
阅读次数:
192