摘要:
题意:平面上给若干点,问它们是不是关于某垂直于x轴的直线对称。代码:(Wrong Answer, –ms)//UVa1595 - Symmetry#include#include#includeusing namespace std;struct point { int x,... 阅读全文
摘要:
题意:问在一个词典里,那些单词是复合词,即哪些单词是由两个单词拼出来的。渣渣代码:(Accepted, 30ms)//UVa10391 - Compound Words#include#include#includeusing namespace std;set dic;int m... 阅读全文
摘要:
题意:有若干交换生、若干学校,有人希望从A校到B校,有的想从B到C、C到A等等等等。如果有人想从A到B也刚好有人想从B到A,那么可以交换(不允许一对多、多对一)。看作后如果有人找不到人交换,那么整个交换计划失败。代码:(Accepted, 50ms)//UVa10763 - For... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO代码:(Accepted,0 ms)//UVa10935 - Throwing cards away I#include#includeint N;int main(){ //freopen("i... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO代码:(Accepted,20 ms)//UVa1594 - Ducci Sequence#include#include#include#includeusing namespace std;int ... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO代码:(Accepted,0 ms)//UVa1593 - Alignment of Code#include#include#include#include#include#include#inclu... 阅读全文
摘要:
之前上传UVa227 puzzle时,好不容易AC了,但发现自己用时50(ms),而在VJ上看到人家都是40ms、20ms,于是打开一个20ms的代码查看人家强在哪里。但结果研究了半天感觉差不多,于是想着应该不是算法的问题。然后又想到,网上提交的答案,大家都是用scanf和prin... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO代码:(Accepted,0 ms)//UVa815 - Flooded!#include#includeint M, N, W, S[1000], T = 0;int main(){ //fre... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)#includeunsigned N, A, B, Sp, Sq, ansA, ansB;unsigned long long Pofs, K, nowK;int ... 阅读全文
摘要:
书上具体所有题目:http://pan.baidu.com/s/1hssH0KO 代码:(Accepted,0 ms)//UVa12108 - Extraordinarily Tired Students#includestruct how_cute_my_sleepy_boys... 阅读全文