摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)//UVa509 - RAID!#includeint d, s, b, t, times = 0;char disk_data[7][6666], type;i... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,10 ms)//UVa508 - Morse Mismatches#include#include#includeusing namespace std;map morse... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)//UVa1590 - IP Networks#includeunsigned i, m, num, ip[4], ipmax[4], ipmin[4], mas... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)#includechar str[15];void change(int b) {//更换顶上的面 char t; if(b) t = str[0],... 阅读全文
摘要:
学的是C++,用cin cout也用的很顺溜,写自己的类时重载“>”运算符也很爽,但是发现在刷算法竞赛题时,cin cout很没优势,输入量大时一道题我用cin cout要50ms,用scanf printf只要10ms、20ms,这个就差的太大了时间都花在输入输出上也是很郁闷。于... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)//UVa 220 - Othello#includechar Board[11][11], Current, Command[5];bool Flag, L_R... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,20 ms)#include#includeusing namespace std;int N, M, x, y, CO[12], Times = 0;// 2 y ? ... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)//UVa1589#include#include#define P(x,y) Pi[x].position[y]using namespace std;int ... 阅读全文
摘要:
好几天没刷题没看书没写博客了,一直在闭关修炼写大数,现在终于写出来啦!我也终于有了属于我自己的大数~~~~并且以头文件的形式写出的,可以算是一个完整的成品了,拿过来就可以用。 本大数类:longer实现的功能:加减乘除、取余、取绝对值,开根号什么的没精力弄了,只是声明了一下没定义,... 阅读全文
摘要:
题目:算法竞赛入门经典 2-1 水仙花数 代码:#includevoid main(){ for (int i = 100;i using namespace std;void main(){ int a,b,c,times=0; while (cin >> a ... 阅读全文