I believe the fractional reserve gold system
has seen more stress and was probably in good part responsible for cementing the
bottom in gold around $1...
分类:
其他好文 时间:
2014-05-24 09:13:30
阅读次数:
254
下面给出的题目共计560道,去掉重复的也有近500题,作为ACMer Training
Step1,用1年到1年半年时间完成。打牢基础,厚积薄发。一、UVaOJhttp://uva.onlinejudge.org西班牙Valladolid大学的程序在线评测系统,是历史最悠久、最著名的OJ。二、《算法...
分类:
其他好文 时间:
2014-05-21 19:18:32
阅读次数:
604
一、沉金板与镀金板的区别1、原理区别FLASH GOLD
采用的是化学沉积的方法!PLANTINGGOLD
采用的是电解的原理!2、外观区别电金会有电金引线,而化金没有。而且若金厚要求不高的话,是采用化金的方法,比如,内存条PCB,它的PAD表面采用的是化金的方法。而TAB(金手指)有使用电金也有使...
分类:
其他好文 时间:
2014-05-21 11:43:31
阅读次数:
245
背包问题九讲
目录
第一讲
01背包问题
第二讲
完全背包问题
第三讲
多重背包问题
第四讲
混合三种背包问题
第五讲
二维费用的背包问题
第六讲
分组的背包问题
第七讲
有依赖的背包问题
第八讲
泛化物品
第九讲
背包问题问法的变化
附录一:USACO中的背包问题
附录二:背包问题的搜索解法...
分类:
其他好文 时间:
2014-05-21 07:35:37
阅读次数:
400
做了大半个月,终于把第一章做完了有的题遇到了不小的坎儿,看着网上一群高中生都做得那么好,心理还是有些小郁闷的。不禁感慨我过去的四年真是虚度啊。总结一下第一章学习到的知识吧。①闰年判断int
isleapyear(int N){ if((N%100 != 0 && N%4 ==0) || (N%...
分类:
其他好文 时间:
2014-05-19 22:03:31
阅读次数:
317
A square pattern of size N x N (1 20 #include
21 #include 22 using namespace std; 23 24 //旋转90度的操作 25 int
**transiformation_one(int before[][11],i...
分类:
其他好文 时间:
2014-05-16 03:10:30
阅读次数:
361
一看题目 经典的8皇后问题 不过是皇后数量可变而已 不用想 回溯法。 需要个生成每次可选择序列的函数,
在存储可选择的序列时按照先大后小的顺序排的。这样每次找最小和去掉最小都很方便,只要有个记录数量的变量 每次减1就好了。 写完后,居然悲剧了。
在皇后数量达到13时, 在自己电脑上跑 内存溢出了 在...
分类:
其他好文 时间:
2014-05-16 00:04:46
阅读次数:
444
Stone crushing and screening plant emerged at a
high speed, especially in the cement plant, gold ore mining, iron ore mining,
metallurgy plant, and ot...
分类:
其他好文 时间:
2014-05-15 17:18:36
阅读次数:
368
/*
ID:kevin_s1
PROG:milk
LANG:C++
*/
#include
#include
#include
#include
#include
#define MAXN 5001
using namespace std;
int N,M;
struct farmer{
int Pi;
int Ai;
}farmers[MAXN];
int cmp(farm...
分类:
其他好文 时间:
2014-05-13 11:56:20
阅读次数:
252
/*
ID:kevin_s1
PROG:dualpal
LANG:C++
*/
#include
#include
#include
#include
#include
using namespace std;
int N,S;
vector result;
bool isPalindromic(string num){
bool flag = true;
int len =...
分类:
其他好文 时间:
2014-05-13 06:10:09
阅读次数:
312