题目链接:http://poj.org/problem?id=2337 题意:给定一些单词,假设一个单词的尾字母与还有一个的首字母同样则能够连接。问能否够每一个单词用一次,将全部单词连接,能够则输出字典序最小的序列。 代码: (bin 神的板子) #include <stdio.h> #includ ...
分类:
其他好文 时间:
2017-06-23 20:58:33
阅读次数:
153
题目大意: 给出n+1堆石子,前n堆石子的数量是a[i],最后一堆只有1个石子,但是具有魔力 拿走该石子的一方可以选择接下来是进行普通的Nim游戏还是anti-nim游戏 问是先手必胜还是必败 首先拿全是1的情况熟悉一下规则 如果全是1,那么无论有几堆,先手都是必胜的 因为如果有奇数个1,那么Ali ...
分类:
其他好文 时间:
2017-06-18 22:45:39
阅读次数:
174
#include <iostream> //输出流#include <cctype> //judge if the letter or not#include <fstream> //about the fopen#include <iomanip> //about the digit precis ...
分类:
其他好文 时间:
2017-06-17 19:41:08
阅读次数:
190
//体重指数程序#include <fstream>#include <iostream>#include <iomanip>#include <string>using namespace std; int main(){ const int BMI_CONSTANT = 703; float w ...
分类:
其他好文 时间:
2017-06-17 19:35:59
阅读次数:
164
C、传统 C++ #include <assert.h> //设定插入点#include <ctype.h> //字符处理#include <errno.h> //定义错误码#include <float.h> //浮点数处理#include <fstream.h> //文件输入/输出#includ ...
分类:
编程语言 时间:
2017-06-13 22:48:19
阅读次数:
236
场景:1. 就是合并文本文件,而且从第2个文件起不要合并第一行.2. 多加了一个功能,就是支持2个以上的文件合并.3. 问题: http://ask.csdn.net/questions/192151仅仅能说非常easy: 基础只是关吧,这位同学,也有可能不是开发的,放这里也是为了培训基础差的.te ...
分类:
编程语言 时间:
2017-06-05 10:11:42
阅读次数:
136
题目:By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23. 3 7 4 2 4 ...
分类:
其他好文 时间:
2017-06-03 12:38:57
阅读次数:
200
Description In Pearlania everybody is fond of pearls. One company, called The Royal Pearl, produces a lot of jewelry with pearls in it. The Royal Pear ...
分类:
其他好文 时间:
2017-05-29 11:10:35
阅读次数:
244
/* ID: lucien23 PROG: frac1 LANG: C++ */ #include <iostream> #include <fstream> #include <vector> #include <algorithm> using namespace std; typedef st ...
分类:
其他好文 时间:
2017-05-28 20:12:52
阅读次数:
121
今天来总结下二叉树前序、中序、后序遍历相互求法,即如果知道两个的遍历,如何求第三种遍历方法,比较笨的方法是画出来二叉树,然后根据各种遍历不同的特性来求,也可以编程求出,下面我们分别说明。 首先,我们看看前序、中序、后序遍历的特性: 前序遍历: 1.访问根节点 2.前序遍历左子树 3.前序遍历右子树 ...
分类:
其他好文 时间:
2017-05-27 22:32:49
阅读次数:
237