摘要: Problem DescriptionOverpower often go to the playground with classmates. They play and chat on the playground. One day, there are a lot of stars in the sky. Suddenly, one of Overpower’s classmates ask him: “How many acute triangles whose inner angles are less than 90 degrees (regarding stars as poin 阅读全文
posted @ 2013-08-07 19:36 坚固66 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Problem D: Servicing stations A company offers personal computers for sale in N towns (3 #include #include using namespace std;int n, m;int x, y;int snum[40];int map[40][40];int f[40];int minn;bool cmp(int a, int b){ return a > b;}void dfs(int star, int num, int tnum){ if (tnum >= minn) return 阅读全文
posted @ 2013-08-07 19:34 坚固66 阅读(255) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionNow you are given one non-negative integer n in 10-base notation, it will only contain digits ('0'-'9'). You are allowed to choose 2 integers i and j, such that: i!=j, 1≤i#include int main(){ int n,i,j,len,l,MIN,flag,ss; char str[1005],min_c,t; scanf("%d" 阅读全文
posted @ 2013-08-07 19:32 坚固66 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 题意:有N个数,问最多能取出多少个连续的数([-100000000, 100000000]),使得剩下的数的和模M的值等于原来N个数的和模M的值(0 >求前i项和,前i项和模M后为r,标记出r最早出现的位置L和最后出现的位置R,那么,把(L, R]这个区间删掉,就原来序列和模M没有影响。注意:-5 % 3 = ?,在这里,可以按 -5 % 3 = 1计算。特别注意:如果这N个数下标从1开始,那么0最早出现的位置不是0在序列中最早出现的位置,而是下标0这个位置(假设0第一次出现在第i位,那么把前i个数拿掉,是不是可以?)。#include #include #include using n 阅读全文
posted @ 2013-08-07 19:30 坚固66 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 任务调度的crond常用命令 crond 是linux用来定期执行程序的命令。当安装完成操作系统之后,默认便会启动此任务调度命令。crond命令每分锺会定期检查是否有要执行的工作,如果有要执行的工作便会自动执行该工作有关linux crond的概念使用方法可参考一下文章:http://blog.csdn.net/tianlesoftware/article/details/5315039http://www.zeuux.com/blog/content/2914/http://www.cnblogs.com/jiafan/articles/1153066.html 在使用过程中会经常遇到一些. 阅读全文
posted @ 2013-08-07 19:28 坚固66 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Addition ChainsAn addition chain fornis an integer sequencewith the following four properties:a0= 1am=na0 and are both valid solutions when you are asked for an addition chain for 5.Input SpecificationThe input file will contain one or more test cases. Each test case consists of one line containing. 阅读全文
posted @ 2013-08-07 19:26 坚固66 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 异常信息:org.apache.jasper.JasperException:java.lang.ClassCastException:org.apache.catalina.util.DefaultAnnotationProcessorcannotbecasttoorg.apache.AnnotationProcessoratorg.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:522)atorg.apache.jasper.servlet.JspServletWrapper 阅读全文
posted @ 2013-08-07 19:24 坚固66 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 首先:在 JDK 的 java.net 包中已经提供了访问 HTTP 协议的基本功能:HttpURLConnection。但是对于大部分应用程序来说,JDK库本身提供的功能还不够丰富和灵活。 在Android中,androidSDK中集成了Apache的HttpClient模块,用来提供高效的、最新的、功能丰富的支持 HTTP 协议工具包,并且它支持 HTTP 协议最新的版本和建议。使用HttpClient可以快速开发出功能强大的Http程序。 其次:HttpClient是个很不错的开源框架,封装了访问http的请求头,参数,内容体,响应等等, HttpURLConnection是jav... 阅读全文
posted @ 2013-08-07 19:22 坚固66 阅读(359) 评论(0) 推荐(0) 编辑
摘要: main函数 Go中有且只有一个main函数,而且main函数必须在package main当中.main函数无返回值也无参数,如果希望获取从命令行传递的参数有其他包解决这个问题. C++中main函数可以有参数也可以有返回值.而且声明的时候有返回值,在main函数体中可以不写,编译器会帮你补上. 虽然Python中有类似main的东西,在代码中我们也可以看见if __name__ == '__main__': 这样的代码,但实质上Python就不需要main函数.当一个Python文件被当作可以直接 运行的模块的时候,它的__name__属性将是一个特殊的默... 阅读全文
posted @ 2013-08-07 19:20 坚固66 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 第一道组合数学题,连跪一天。。没有discuss根本做不出来,但是想想不是很难。首先,RoundNumber[start, end] = RoundNumber[0,start] - RoundNumber[0,end - 1] = RoundNumber[0, start + 1] - RoundNumber[0, end]这是容易证明的。因为一个数字是否是所谓“RoundNumber”,只跟它自己有关,也就是说转化成二进制的0的个数是否大于1的个数有关。那么他们(独立的数字,如1,2,3,4)之间是相互独立的。至于为何要加一或者减一,因为是要包含区间边界,无论是否小于等于它都会包含(省事儿 阅读全文
posted @ 2013-08-07 19:18 坚固66 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Problem Description 蜘蛛牌是windows xp操作系统自带的一款纸牌游戏,游戏规则是这样的:只能将牌拖到比她大一的牌上面(A最小,K最大),如果拖动的牌上有按顺序排好的牌时,那么这些牌也跟着一起移动,游戏的目的是将所有的牌按同一花色从小到大排好,为了简单起见,我们的游戏只有同一花色的10张牌,从A到10,且随机的在一行上展开,编号从1到10,把第i号上的牌移到第j号牌上,移动距离为abs(i-j),现在你要做的是求出完成游戏的最小移动距离。 Input 第一个输入数据是T,表示数据的组数。 每组数据有一行,10个输入数据,数据的范围是[1,10],分... 阅读全文
posted @ 2013-08-07 19:16 坚固66 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 在这之前你应该先安装好 Node.js,安装过程不再讲解首先在你的电脑上创建一个新目录,姑且命名为 chat,然后在该目录创建两个文件,分别是 app.js 和 index.html。 app.jsvar fs = require('fs') , http = require('http') , socketio = require('socket.io'); var server = http.createServer(function(req, res) { res.writeHead(200, { 'Content-type' 阅读全文
posted @ 2013-08-07 19:14 坚固66 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 没有办法用 rpm查询一个源代码包是否安装 因为 并不是用rpm安装的可以先吧 selinux 给禁用掉 iptables -F 把防火墙规则全部删除 首先确保 gcc gcc-c++ make是否安装 一般 make是安装了的 但是 gcc 和gcc-c++是没安装 首先先载入CentOS的光盘 然后进入 CentOS目录 rpm -ivh gcc-4.1.2-48.el5.i386.rpm 安装GCC 但是会有依赖关系 无法安装 我们可以用 yum install gcc 然后安装 yum install gcc-c... 阅读全文
posted @ 2013-08-07 19:12 坚固66 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Pizza Anyone?You are responsible for ordering a large pizza for you and your friends. Each of them has told you what he wants on a pizza and what he does not; of course they all understand that since there is only going to be one pizza, no one is likely to have all their requirements satisfied. Can 阅读全文
posted @ 2013-08-07 19:10 坚固66 阅读(203) 评论(2) 推荐(0) 编辑
摘要: 1.简介 mmtests是一个可配置的测试套件,可以被MM开发者用来进行一个常规测试。理想情况下,它可以与LTP,xfstests等测试工具结合起来实现自动化测试。 2.软件组织 run-mmtests.sh脚本用于运行测试,这个脚本会读取config文件,脚本接受一个参数,通常情况下,这个参数表明测试的名字,一般情况下它表明了内核的配置情况,例如$:./run-mmtests.sh zswap2G其中,每一种测试有对应的config文件,config文件在configs目录下面,测试之前,需要执行cp configs/oneconfig config,然后run-mmtests.sh会读取这 阅读全文
posted @ 2013-08-07 19:08 坚固66 阅读(664) 评论(0) 推荐(0) 编辑
摘要: 准备工作1,装好MyEclipse软件2,可以上网3,在线安装地址:http://download.eclipse.org/technology/babel/update-site/R0.11.0/kepler 教学步骤:第一步:Help--->MyEclipse Configuration center---->选择SoftWare 第二步,添加安装地址,点击add site输入name和URL地址 http://download.eclipse.org/technology/babel/update-site/R0.11.0/kepler第三步:展开Language,选择简体中 阅读全文
posted @ 2013-08-07 19:06 坚固66 阅读(1238) 评论(0) 推荐(0) 编辑
摘要: 今天下完班,和部门兄弟一起去打了两小时乒乓球,大汗淋漓,很痛快. 败给了两个高手,感觉年龄大了些,灵活性没有以前那么好了。 想想以前读书时,在整个学校都叱诧风云,如今即败给了几个老手,唉。 看来以后要多多练习了。 阅读全文
posted @ 2013-08-07 19:04 坚固66 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 适合使用的场合:.net 中从前台中的table导出成excel文件,兼容各种浏览器。使用工具:org.in2bits.MyXls.dll从前台获取表格的thead和表格的tbody,将其转化为字符串,用逗号隔开html: 校友会编号校友会名称常设办事处主席姓名联系电话建会时间总人数依托学院 校友会编号校友会名称常设办事处主席姓名联系电话建会时间总人数依托学院 @foreach (var l in Model)... 阅读全文
posted @ 2013-08-07 19:02 坚固66 阅读(315) 评论(0) 推荐(0) 编辑
摘要: Crashing RobotsTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 6599Accepted: 2854Description In a modernized warehouse, robots are used to fetch the goods. Careful planning is needed to ensure that the robots reach their destinations without crashing into each other. Of course, all warehous 阅读全文
posted @ 2013-08-07 19:00 坚固66 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 需要进行jni的开发有一下几个条件:1:能初步使用C/C++如果不会,请参读 谭浩强的 C编程语言2:android应用开发已经基本入门,如果没有,请先行学习 这两个条件基本满足后,我们开始了:1:环境搭建相信大家android开发环境是有的哦A:给eclipse添加 C/C++文件。在 eclipse的help的install new softwareB:由于我是windows平台的环境(所以需要安装一个 Cygwin 这个是来模拟我们的linux操作系统的,因为android底层就是一个linux操作系统)C:安装ndk(ndk是用来跨平台编译的 如果你C学的比较好的话,你会了解:在wi. 阅读全文
posted @ 2013-08-07 18:57 坚固66 阅读(186) 评论(0) 推荐(0) 编辑