码迷,mamicode.com
首页 >  
搜索关键字:hdu 4565 so easy    ( 46279个结果
linux中python easy_install命令
centos 下安装 python easy_installcurl -O http://peak.telecommunity.com/dist/ez_setup.pypython ez_setup.py -U setuptools如果出现 setuptools.egg下载不了 更改ez_setup...
分类:编程语言   时间:2014-05-09 17:06:03    阅读次数:665
chrpath工具使用
chrpath是用来改变程序的depends lib 的搜索路径的,比如我们一般使用$ldd application linux-vdso.so.1 => (0x00007fff89844000) libQt3Support.so.4 => /usr/lib/libQt3Support.so.4 (...
分类:其他好文   时间:2014-05-09 16:40:27    阅读次数:230
Apache伪静态配置
1:打开Apache安装目录下httpd.conf,搜索“LoadModule rewrite_modulemodules/mod_rewrite.so”,找到这一行,去掉前面的“#”;2:找到“AllowOverride None”改为“AllowOverride All” 有两个地方需要修改3:...
分类:其他好文   时间:2014-05-09 12:11:57    阅读次数:353
armeabi与armeabi-v7a
1、armeabi armeabi是指的该so库用于Arm的通用CPU。2、armeabi-v7a v7a的CPU支持硬件浮点运算。3、共同点 armeabi和armeabi-v7a是表示cpu的类型。4、不同点 因此armeabi通用性强,但速度慢,而v7a能充分发挥v7a CPU的能力。arme...
分类:其他好文   时间:2014-05-09 11:56:52    阅读次数:580
nyoj重建二叉树(不真的建立)
感觉c++很陌生啊 题目很简单,给你一棵二叉树的后序和中序序列,求出它的前序序列(So easy!)。 输入 输入有多组数据(少于100组),以文件结尾结束。每组数据仅一行,包括两个字符串,中间用空格隔开,分别表示二叉树的后序和中序序列(字符串长度小于26,输入数据保证合法)。 输出 每组输出数据单...
分类:其他好文   时间:2014-05-08 22:14:52    阅读次数:321
hdu 1159
题意:求最长子序列#include#includeusing namespace std;int max(int x,int y){ if(x>y) return x; return y;}int map[1001][1001];char s1[1001],s2[1001];int main(){ ...
分类:其他好文   时间:2014-05-07 20:07:29    阅读次数:202
hdu 1176
数塔问题#include#includeusing namespace std;int a[100009][12];int maxi(int a,int b,int c){ int max1; max1=a>b?a:b; max1=max1>c?max1:c; return ...
分类:其他好文   时间:2014-05-07 19:25:00    阅读次数:302
hdu 3030 Increasing Speed Limits (离散化+树状数组+DP思想)
Increasing Speed LimitsTime Limit: 2000/10000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 481Accepted Submission(s):...
分类:其他好文   时间:2014-05-07 18:28:10    阅读次数:475
hdu 1102 Constructing Roads (最小生成树)
Constructing RoadsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 12967Accepted Submission(s): 491...
分类:其他好文   时间:2014-05-07 18:04:54    阅读次数:266
Leetcode | Sort Colors
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, ...
分类:其他好文   时间:2014-05-07 18:01:05    阅读次数:412
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!