80ers' MemoryTime Limit:1 Second Memory Limit:32768 KBI guess most of us are so called 80ers, which means that we were born in the 1980's. This group ...
分类:
其他好文 时间:
2014-08-17 00:58:51
阅读次数:
221
1 #Filename:game1.py 2 3 guess=10 4 running=True 5 while running: 6 try: 7 answer=int(raw_input('Guess what i think:')) 8 ...
分类:
编程语言 时间:
2014-08-08 15:59:16
阅读次数:
215
STL数据结构(queue,stack,priority queue)的基本操作; 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 8 9 int main (){10 int n;1...
分类:
其他好文 时间:
2014-08-04 10:48:27
阅读次数:
256
UVA 11995 - I Can Guess the Data Structure!
题目链接
题意:给定一堆的操作,问这个数据结构是什么
思路:水题,稍微模拟一下就可以了
代码:
#include
#include
#include
#include
using namespace std;
const int N = 1005;
int n, q[N...
分类:
其他好文 时间:
2014-07-26 02:39:56
阅读次数:
241
默认字体不好分辨,修改:sudo dpkg-reconfigure console-setup选择:utf-8,Guess...,VGA,8X16。默认的ls的目录颜色也太深,看不清楚,修改成绿色,在~/.profile中添加:export LS_COLOR='rs=0:di=01;32:ln=01...
分类:
其他好文 时间:
2014-07-24 22:32:42
阅读次数:
308
执行到./configure--enable-shared一步时提示:checkinghostsystemtype...Invalidconfiguration`x86_64-unknown-linux-gnu‘:machine`x86_64-unknown‘notrecognized解决办法:cp/usr/share/libtool/config.guess.(覆盖到相关软件自带的config.guess,t1lib在解压包的ac-tools下)cp..
分类:
系统相关 时间:
2014-07-17 15:12:10
阅读次数:
260
题目很好很有意思。告诉你n个序列中,任意一个连续子序列的和与0相比较的结果。构造一个满足条件的序列。对于从x->y这一段的和,如果大于0,那么sum[x]>sum[y-1],显然我们可以得到每一个sum的大小关系。由于这个满足条件的sum关系已经考虑了所有的源系列的大小关系,所以只要我们生成了一个满...
分类:
其他好文 时间:
2014-07-14 18:00:24
阅读次数:
193
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2136
Problem A
Another n-Queen Problem
I guess the n-queen problem is known by every ...
分类:
其他好文 时间:
2014-07-13 18:16:11
阅读次数:
498
#! /bin/sh# From configure.in Revision: 1.430.2.25 .# Guess values for system-dependent variables and create Makefiles.# Generated by GNU Autoconf 2.6...
分类:
其他好文 时间:
2014-07-12 08:55:09
阅读次数:
361
;; Building Abstractions With Procedures
( define ( my-sqrt x )
( define ( good-enough? guess )
(
( define ( improve guess )
( average guess ( / x guess ) ) )
...
分类:
其他好文 时间:
2014-07-08 15:22:37
阅读次数:
306