0%

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 123456789101112131415161718192021222324252627282930313233343536//UVa1593 - Alignment of Code#include<iostream>#include<algorithm>#include<vector>#include<string>#include<sstream>#include<...

之前上传UVa227 puzzle时,好不容易AC了,但发现自己用时50(ms),而在VJ上看到人家都是40ms、20ms,于是打开一个20ms的代码查看人家强在哪里。但结果研究了半天感觉差不多,于是想着应该不是算法的问题。然后又想到,网上提交的答案,大家都是用scanf和printf写的,而我用的cin cout,而这题的确需要大量的输入输出,于是就想着把所有cin cout改成scanf printf。结果 —。— 上面c++版,下面c版。 于是我很好奇C的输入输出方法和C++提倡的方法为什么差距那么大。经过一番研究和查询,结果如下: 首先是scan...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 123456789101112131415161718192021222324//UVa815 - Flooded!#include<iostream>#include<algorithm>int M, N, W, S[1000], T = 0;int main(){ //freopen("in.txt", "r", stdin); while (scanf("%d%d", &M, &N...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 1234567891011121314151617#include<iostream>unsigned N, A, B, Sp, Sq, ansA, ansB;unsigned long long Pofs, K, nowK;int main(){ //freopen("in.txt", "r", stdin); while (scanf("%u%u%u", &N, &Sp, &Sq) !=...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 1234567891011121314151617181920212223242526272829303132333435//UVa12108 - Extraordinarily Tired Students#include<iostream>struct how_cute_my_sleepy_boys_are { int a,//awaken period : a>=1; b,//sleeping peri...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152//UVa509 - RAID!#include<iostream>int d, s, b, t, times = 0;char disk_data[7][6666], type;inline char* disk(int x, int ...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,10 ms) 123456789101112131415161718192021222324252627282930313233343536373839404142434445//UVa508 - Morse Mismatches#include<iostream>#include<string>#include<map>using namespace std;map<char, string> mo...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 12345678910111213141516171819202122232425262728293031323334353637383940//UVa1590 - IP Networks#include<iostream>unsigned i, m, num, ip[4], ipmax[4], ipmin[4], mask[4];int cmp(unsigned *a, unsigned *b) {//compa...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 123456789101112131415161718192021222324252627282930313233343536#include<iostream>char str[15];void change(int b) {//更换顶上的面 char t; if(b) t = str[0], str[0] = str[1], str[1] = str[5], str[5] = str[3], str[3] = ...

学的是C++,用cin cout也用的很顺溜,写自己的类时重载“<<”与“>>”运算符也很爽,但是发现在刷算法竞赛题时,cin cout很没优势,输入量大时一道题我用cin cout要50ms,用scanf printf只要10ms、20ms,这个就差的太大了时间都花在输入输出上也是很郁闷。于是开始使用C的输入输出标准。输出很正常,也可以轻松更改double输出的精度,c++还要个iomanip头文件,还烦一点。格式化字符%u %d %ld %lld %f %lf %s %c等就这几个限死了,也就是只能输入输出这几个系统自带的格式...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182//UVa 220 - Othello#include<iostream>char Board[11][11], Cu...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,20 ms) 1234567891011121314151617181920212223242526272829303132333435363738394041#include<iostream>#include<cstring>using namespace std;int N, M, x, y, CO[12], Times = 0;// 2 <=n<= 9,CO=Countchar SQ[12][12], c...

书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms) 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293//UVa1589#include<iostream>#include&l...

好几天没刷题没看书没写博客了,一直在闭关修炼写大数,现在终于写出来啦!我也终于有了属于我自己的大数~~~~并且以头文件的形式写出的,可以算是一个完整的成品了,拿过来就可以用。 本大数类:longer实现的功能:加减乘除、取余、取绝对值,开根号什么的没精力弄了,只是声明了一下没定义,以后会更新的。同时支持正负号。数据用的vector< long long >存储,long long最大储存9位数,也就是999999999,因为2个999999999相乘刚好不越界。不过后来发现好像没必要,用int就行了,但是写都写一半了,就没改。不过灵活性也蛮高...

题目:算法竞赛入门经典 2-1 水仙花数 代码: 123456#include<iostream>void main(){ for (int i = 100;i < 999;++i) if ((i % 10)*(i % 10)*(i % 10) + (i % 100 / 10)*(i % 100 / 10)*(i % 100 / 10) + (i / 100)*(i / 100)*(i / 100) == i) std::cout << i << '\n';} 题目:算法竞赛入门经典 2-2 ...