写的话就是排列组合。。。但能化简。。。ΣC(n,i)*C(i,1) 化简为n*2^(n-1) ; ...
分类:
其他好文 时间:
2018-07-16 20:27:35
阅读次数:
116
And Now, a Remainder from Our Sponsor Problem Description IBM has decided that all messages sent to and from teams competing in the ACM programming co ...
分类:
其他好文 时间:
2018-06-15 00:03:53
阅读次数:
179
首先题目是这样的: 球队表teams 比赛表matches 赢了得3分,平局的得1分,输了得0分。 思路: 一个球队的成绩分为两部分,作为主队的得分和作为客队的得分; 计算出一次比赛中具体得了多少分,具体的比较我也不知道; 得到这个零时表然后根据球队group求和; 最后根据球队表关联得出球队的名字... ...
分类:
数据库 时间:
2018-03-24 22:33:01
阅读次数:
215
最近outlook.msg文件打开一次之后不能再次打开的问题,在沉寂了一段时间之后,随着微软新推的MicrosoftTeams的功能不断更新,又出现了!当outlook在开启的时候,你打开一次保存的.msg文件后再次打开时就不能打开了,报错如下:文件被占用,正常情况应该是文件关闭之后就会解除占用。在几经排查之后,发现问题出在outlook加载项中teamsmeeting功能我们找到它把这个√去掉,
分类:
其他好文 时间:
2018-03-16 18:47:50
阅读次数:
247
This time the Berland Team Olympiad in Informatics is held in a remote city that can only be reached by one small bus. Bus has n passenger seats, seat ...
分类:
其他好文 时间:
2018-03-04 23:59:28
阅读次数:
323
题意就不多说了这个小规律不算难,比较容易发现,就是让你求一个数n*2^(n-1);很好想只是代码实现起来还是有点小困(简)难(单)滴啦,一个快速幂就OK了; 代码: ...
分类:
其他好文 时间:
2018-02-22 21:43:54
阅读次数:
149
CF899A Splitting in Teams CF899A Splitting in Teams CF899A Splitting in Teams 题意翻译 n个数,只有1,2,把它们任意分组,和为3的组最多多少 题目描述 There were nn groups of students w ...
分类:
其他好文 时间:
2018-02-11 14:37:08
阅读次数:
134
题目 Consider a single elimination football tournament involving 2n teams, denoted 1, 2, …, 2n. In each round of the tournament, all teams still in the ...
分类:
其他好文 时间:
2018-02-03 16:11:39
阅读次数:
183
Splitting in Teams Months and Years Dividing the numbers Shovel Sale Segments Removal Letters Removing ...
分类:
其他好文 时间:
2017-12-17 23:47:00
阅读次数:
198
A. Splitting in Teams 水题贪心,数列有1,2两种元素,求组成3的最大方案,首先找到1的个数a,2的个数b,尽可能满足2,若b>=a,则就输出a,否则,输出b+(a-b)/3 代码如下: B. Months and Years 暴力,特别注意:相邻两年不可能都是润年,因为数据量很 ...
分类:
其他好文 时间:
2017-12-17 22:17:00
阅读次数:
120