摘要:
English foundation: do some cleaning chores 题目:https://cn.vjudge.net/contest/317575#problem/A Hint: This problem has huge input data,use scanf() inste 阅读全文
摘要:
English foundation: the fractional part 小数部分 disclaimer 免责声明 fictitious 虚构的,编造的;假定的,虚设的;小说式的;假装的 No two teams have the same name. round down the numbe 阅读全文
摘要:
英文预备: second to none conduct a milk tea festival make many cups of milk tea savour(savor)品味,细品,享用;体味,享受。 savor milk tea. 题目地址:http://acm.hdu.edu.cn/co 阅读全文
摘要:
cryptography(密码学) Reference: https://cn.vjudge.net/contest/319360#problem/A 阅读全文
摘要:
当今计算机科学的一个重要的领域就是密码学。有些人甚至认为密码学是计算机科学中唯一重要的领域,没有密码学生命都没有意义。 阿尔瓦罗就是这样的一个人,它正在设计一个为西班牙杂烩菜饭加密的步骤。他在加密算法中应用了一些非常大的素数。然而确认一个非常大的数是不是素数并不是那么简单。一个费时的方法是用比这个数 阅读全文
摘要:
解析: 这是一个特判哦! 代码: 阅读全文
摘要:
分析: REF:https://blog.csdn.net/idrey/article/details/53869954 阅读全文
摘要:
Given you n sets.All positive integers in sets are not less than 1 and not greater than m.If use these sets to combinate the new set,how many differen 阅读全文
摘要:
As we known, data stored in the computers is in binary form.(数据以二进制形式存储于电脑之中。)The problem we discuss now is about the positive integers and its binary 阅读全文
摘要:
#include using namespace std; int getbits(int n)//统计(n)bin中的1的个数 { int res=0; while(n) { res++; n=n&(n-1); } return res; } int cmp(int a,int b)//统计a,b中the number of... 阅读全文