码迷,mamicode.com
首页 >  
搜索关键字:hdoj networking    ( 3176个结果
在 Ubuntu 12.04 上通过安装源安装 Open vSwitch (OVS)
先把Ubuntu 12.04 更新一下 sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade   删除 Ebtables 包 sudo aptitude purge ebtables 从安装源安装Open vSwitch (OVS) sudo apt-get install ap...
分类:其他好文   时间:2014-08-20 19:42:02    阅读次数:226
HDOJ 4964 Emmet
递归语法翻译。。。 Emmet Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 138    Accepted Submission(s): 44 Problem Description For ev...
分类:其他好文   时间:2014-08-20 02:43:05    阅读次数:326
【Java】对服务器程序的理解
Login:------------->方法Data:----->类、API数据Collection:-------->集合Data SourceFile:Database:Networking:------->java.net/javax.netWeb Service:Stream
分类:编程语言   时间:2014-08-20 02:29:05    阅读次数:203
ubuntu12.04 报错 xorg
今天突然间update 一些软件后,就遇到了无法启动桌面,就是输入正确的用户名和密码后还是无法进入系统。重启后,一直停留在waiting for network configuration, 然后显示waiting up to 60 more seconds for networking confi...
分类:其他好文   时间:2014-08-20 01:22:55    阅读次数:477
HDOJ 4968 Improving the GPA
枚举。。。 Improving the GPA Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 158    Accepted Submission(s): 126 Problem Description ...
分类:其他好文   时间:2014-08-19 22:34:15    阅读次数:314
HDOJ 4970 Killing Monsters
明明扫一遍的题目,比赛的时候居然用线段树。。。TLE 5发。。。 Killing Monsters Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 225    Accepted Submission(s): 128 ...
分类:其他好文   时间:2014-08-19 20:56:55    阅读次数:310
hdoj 2089 不要62 【打表】
题意:。。 水题 代码: #include #include #include using namespace std; int s[10]; int ans[1000005] = {0, 1}; int is(int n){ //n = 62; int pre = 0, cur = 0, i; while(n){ pre = cur; ...
分类:其他好文   时间:2014-08-19 20:52:15    阅读次数:206
hdoj 1394 Minimum Inversion Number【线段树求逆序对】
#include #include #include using namespace std; const int N = 101000; int a[N]; struct Node { int l,r,num; }; Node tree[4*N]; void build(int l,int r,int o) { tree[o].l=l,tree[o].r=r; t...
分类:其他好文   时间:2014-08-19 11:03:14    阅读次数:222
[acm]HDOJ 2064 汉诺塔III
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=2064汉诺塔变种,只能从中间专业,递归关系为:f(n)=3*f(n-1)+2. 1 //汉诺塔变种,只能从中间转移 2 //11485816 2014-08-19 08:44:47 Accep...
分类:其他好文   时间:2014-08-19 09:16:54    阅读次数:178
HDOJ 3507 Print Article
斜率优化DP Print Article Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 131072/65536 K (Java/Others) Total Submission(s): 5519    Accepted Submission(s): 1707 Problem Descriptio...
分类:其他好文   时间:2014-08-18 22:09:43    阅读次数:322
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!