It is quite a basic problem. However I spent half an hour solving it and made two mistakes. Guess it's because I haven't written some fundamental data structures like linked list for a while and kind...
分类:
其他好文 时间:
2014-10-12 09:08:27
阅读次数:
176
星期一,2013年11月4日linux自带python,只要输入python就可以进入编辑器;number=23;guess=int(raw_input('Enter:')) #int转换成整型#raw_input是一个自带函数,键盘输入if number==guess: #if...else语句(...
分类:
编程语言 时间:
2014-10-11 00:21:34
阅读次数:
277
11995 - I Can Guess the Data Structure!Time limit: 1.000 secondsProblem II Can Guess the Data Structure!There is a bag-like data structure, supporting...
分类:
其他好文 时间:
2014-10-10 16:35:54
阅读次数:
219
Refer to: http://osamashabrez.com/simple-client-server-communication-in-android/I was working of an android project recently and now I guess .. I am d...
分类:
移动开发 时间:
2014-10-06 12:51:20
阅读次数:
411
看官方题解提供的是最小生成树,怎么也想不明白,you can guess and prove it!
看了好几个人的代码,感觉实现思路全都不一样,不得不佩服cf题目想法的多样性
下面说说我自己的理解,将1作为根,对于任意两点存在两种关系:
1.一个点位于另一个点的子树上。两点到1的距离之差绝对值等于两点距离。
2.两个点在某一个点的不同子树上。两点到1距离之和减去两点距离等于两倍某个点到1...
分类:
其他好文 时间:
2014-09-29 11:12:00
阅读次数:
193
vj题目链接题意:有n (n#include #include using namespace std;#define N 20000struct Man{ int a[3]; int possible[8]; void read() { for (int i = 0...
分类:
其他好文 时间:
2014-09-26 21:57:38
阅读次数:
331
题目链接
题意:对于一个序列a1,a2...an,我们可以计算出一个符号矩阵S,其中Sij为ai+..+aj的正负号。给出符号矩阵,要求输出一个对应的序列。
思路:使用连续和转化为前缀和之差的技巧,将前缀和当做一个顶点,那样就能确立边的关系,以及入度数,之后用拓扑排序求解,先着一个入度为0的顶点,删除其相关的边,循环操作。
代码:
#include
#includ...
分类:
其他好文 时间:
2014-09-26 11:49:28
阅读次数:
196
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=&problem=3146&mosmsg=Submission+received+with+ID+14262472
I Can Guess the Data Structure!
...
分类:
其他好文 时间:
2014-09-26 01:23:18
阅读次数:
685
if#!/usr/bin/pythonnumber=23guess=int(input('Enter an interger:')) #input返回的结果是string类型,需要用int()转化为int类型if guess == number: print('You guessed in.'...
分类:
编程语言 时间:
2014-09-07 11:01:14
阅读次数:
248
题目:UVA11995I Can Guess the Data Structure!(stack + queue + priority_queue)
题目大意:给你两种指令,1代表让1后面的数字进入这个数据结构,2代表无差错的从数据结构中取出这个数字,问这个数据结构是stack还是queue还是priority_queue,还是不确定,还是以上均不可能。
解题思路:用STL中的...
分类:
其他好文 时间:
2014-09-05 10:04:21
阅读次数:
204