摘要:
Problem Description Nowadays, we all know that Computer College is the biggest department in HDU. But, maybe you don't know that Computer College had 阅读全文
摘要:
首先。。 有一段时间没有接触01背包了 用起来多少有点生疏 背包的用法就是不断的去更新数据 由于可能性很多 所以遍历的范围要广 Problem Description 电子科大本部食堂的饭卡有一种很诡异的设计,即在购买之前判断余额。如果购买一个商品之前,卡上的剩余金额大于或等于5元,就一定可以购买成 阅读全文
摘要:
此题的重点 在于思维的全面性 由题意可以知道 中间的字符分割可以用5的存在来判断(这里还有注意多个5存在的情况)之后别忘了特殊情况的处理 比如初始值的确定(首字母是不是5) 已经末尾没有5的时候怎么去取值 #include<stdio.h>#include<iostream>#include<alg 阅读全文
摘要:
Problem Description 呃......变形课上Harry碰到了一点小麻烦,因为他并不像Hermione那样能够记住所有的咒语而随意的将一个棒球变成刺猬什么的,但是他发现了变形咒语的一个统一规律:如果咒语是以a开头b结尾的一个单词,那么它的作用就恰好是使A物体变成B物体. Harry已 阅读全文
摘要:
两个剪枝问题 1. 当两点的距离(需要走的步数)大于剩下的时间时 剪去 2.奇偶剪枝问题 如果起点到终点所需走的步数的奇偶性与时间奇偶性不同的时候 剪去 起点到终点步数的奇偶性的判断 首先 明确点的奇偶性判断 看起横纵坐标和为奇数还是偶数 如果起点和终点的奇偶性相同 则步数为偶数 否则为奇数 具体的 阅读全文
摘要:
Problem Description Pirates have finished developing the typing software. He called Cathy to test his typing software. She is good at thinking. After 阅读全文
摘要:
2577 2111 1113 阅读全文
摘要:
杭电1010 Problem Description The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked it up, the maze began to sh 阅读全文
摘要:
不多说 先上模板 #include<stdio.h>void carry(int a[],int first,int mid,int last,int temp[])//将两个有序的数组合并{ int i=first,j=mid,m=mid+1,n=last,k=0; while(i<=j&&m<= 阅读全文
摘要:
对于数组中的大数加法 为了节省内存 可以考虑使用滚动数组杭电1250 Problem Description A Fibonacci sequence is calculated by adding the previous two members the sequence, with the fi 阅读全文