摘要:
Problem DescriptionThere are many lamps in a line. All of them are off at first. A series of operations are carried out on these lamps. On the i-th operation, the lamps whose numbers are the multiple of i change the condition ( on to off and off to on ).InputEach test case contains only a number n ( 阅读全文
摘要:
N张不同票的所有排列可能自然是Ann = N!种排列方式现在的问题就是N张票的错排方式有几种。首先我们考虑,如果前面N-1个人拿的都不是自己的票,即前N-1个人满足错排,现在又来了一个人,他手里拿的是自己的票。只要他把自己的票与其他N-1个人中的任意一个交换,就可以满足N个人的错排。这时有N-1种方法。 另外,我们考虑,如果前N-1个人不满足错排,而第N个人把自己的票与其中一个人交换后恰好满足错... 阅读全文
摘要:
整数解 Problem Description 有二个整数,它们加起来等于某个整数,乘起来又等于另一个整数,它们到底是真还是假,也就是这种整数到底存不存在,实在有点吃不准,你能快速回答吗?看来只能通过编程。例如:x + y = 9,x * y = 15 ? 找不到这样的整数x和y1+4=5,1*4=4,所以,加起来等于5,乘起来等于4的二个整数为1和47+(-8)=-1,7*(-8)=-56,所以... 阅读全文
摘要:
考试排名Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 7040 Accepted Submission(s): 2468 Problem Description C++编程考试使用的实时提交系统,具有即时获得成绩排名的特点。它的功能是怎么实... 阅读全文
摘要:
2095 find your present (2) Problem Description In the new year party, everybody will get a "special present".Now it's your turn to get your special present, a lot of presents now putting on the desk, ... 阅读全文
摘要:
(转自)http://hi.baidu.com/syxcs123/item/c10acbf46818f34d922af258 讲解比较详细 ACM 母函数模板 详解 + 理解!关于什么是母函数 , 以及在现实生活中的应用 , 请大家详看 或者 HDU 母函数 PPT:http://www.cppblog.com/MiYu/archive/2010/08/05/122290.html对于给出的母函数... 阅读全文
摘要:
产生冠军Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6263 Accepted Submission(s): 2982 Problem Description 有一群人,打乒乓球比赛,两两捉对撕杀,每两个人之间最多打一场比赛。球赛的规则如下:... 阅读全文
摘要:
#include using namespace std;int convert(int number,int radix){ int sum=0; sum += number%radix; number = number/radix; while(number!=0) { sum += number%radix; number/=radi... 阅读全文
摘要:
HWND hwnd = ::GetFocus();//获取焦点控件int iID = ::GetDlgCtrlID(hwnd);if(iID == IDC_EDIT2) //查看是否那个控件ID { do_something //相应处理 }设置控件焦点机制:SetFocu会向其他拥有焦点的空间发送 WM_KILLFOCUS消息,然后向你IDC_OK空间发送WM_SETFOCUS消息。所以会先调用之前拥有焦点的WM_KILLFOCUS响应函数,即OnkillFocus函数,然后去响应自己的WM_SETFOCUS消息。GetDlgItem(IDC_EDIT2)->SetFocus(); . 阅读全文
摘要:
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1063 #include #include #include int memory[130]={1,0};int len;void multiplication(int n){int carry=0,i;for(i=0;i=len){printf(".");for(i=0;i=0;i--)printf(... 阅读全文