本文转自http://blog.csdn.net/jiayi_yao/article/details/51057267,感谢原作者! 1 { 2 "id":"1" 3 "n":"kyoya" 4 "p":"123456" 5 "s":"0" 6 } 1 public class User{ 2 pr ...
分类:
其他好文 时间:
2016-09-27 16:22:55
阅读次数:
216
C. Kyoya and Colored Balls Time Limit: 2000ms Memory Limit: 262144KB 64-bit integer IO format: %I64d Java class name: (Any) Time Limit: 2000ms Memory ...
分类:
其他好文 时间:
2016-07-12 15:23:46
阅读次数:
143
A. Kyoya and Photobooks Kyoya Ootori is selling photobooks of the Ouran High School Host Club. He has 26 photos, labeled "a" to "z", and he has compil ...
分类:
其他好文 时间:
2016-04-09 16:48:32
阅读次数:
118
Let's define the permutation of lengthnas an arrayp?=?[p1,?p2,?...,?pn]consisting ofndistinct integers from range from1ton. We say that this permutati...
分类:
其他好文 时间:
2015-12-26 18:32:02
阅读次数:
242
Kyoya Ootori has a bag withncolored balls that are colored withkdifferent colors. The colors are labeled from1tok. Balls of the same color are indisti...
分类:
其他好文 时间:
2015-09-10 00:18:43
阅读次数:
205
A -Kyoya and PhotobooksTime Limit:2000MSMemory Limit:262144KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionKyoya Ootori is selling photobooks of...
分类:
其他好文 时间:
2015-08-02 19:46:34
阅读次数:
106
一看就是排列组合啦~
数字大的球的最后一个一定要放在数字小的球的后面
就是先排最大数的一个放在最后,剩下的任意摆,再将下一个排在最右边,剩下的同款任意摆。。。。。。
(此题要是先预处理C(,)的话肯定是快的,,,,但是codeforces一组一判谁知道呢。。。。)
#include
#include
#include
#include
#include
...
分类:
其他好文 时间:
2015-07-26 12:40:08
阅读次数:
101
Kyoya Ootori has a bag with n colored balls that are colored with k different
colors. The colors are labeled from 1 to k.
Balls of the same color are indistinguishable. He draws balls from the bag...
分类:
其他好文 时间:
2015-07-10 15:13:14
阅读次数:
88
1.题目描述:点击打开链接
2.解题思路:本题实质上在问:给定一个长为L的字符串,在26个字符中选一个字符插入该串,可以形成多少个新的字符串。这就是一个简单的计数问题,长度为L的字符串有L+1个空位可以插入,一共有26*(L+1)个方法,考虑到相同字符的情况,要减去一个,一共有L种重复的情况,因此最终有26*(L+1)-L=25*(L+1)+1种情况。
3.代码:
#define _CRT_...
分类:
其他好文 时间:
2015-07-02 14:10:18
阅读次数:
101
A. Kyoya and Colored Balls一个背包有K种颜色一共N个球,颜色分别为1,2,3...K,颜色相同的球是不区别的。现在从背包里一个一个拿球直到所有球拿光,在拿光第I+1种颜色球之前一定要拿光第I种颜色的球,求有多少种拿法如 果只有一种颜色的球,拿的方法只有一种。如果有两种,留下...
分类:
其他好文 时间:
2015-06-29 13:16:22
阅读次数:
94