码迷,mamicode.com
首页 >  
搜索关键字:hdoj networking    ( 3176个结果
MySQL忘记root密码解决方法
1.停止MySQL服务# kill `cat /var/run/mysqld/mysqld.pid`# pkill mysqld2.使用--skip-grant-tables --skip-networking选项启动MySQL服务# mysqld --skip-grant-tables --ski ...
分类:数据库   时间:2018-07-30 13:27:17    阅读次数:219
HDOJ:1058
第一种思路: 对于四个因数:2,3,5,7;首先定义a[original]=1,m=n=x=y=1=original;然后再分别用a[m],a[n],a[x],a[y],来表示2,,3,5,7的个数再比较a[m]乘以2,a[n]乘以3,a[x]乘以5,a[y]乘以7的大小;如果小的那个是a[x],则 ...
分类:其他好文   时间:2018-07-26 13:12:58    阅读次数:148
HDOJ:1003
Problem Description Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7 ...
分类:其他好文   时间:2018-07-25 11:30:56    阅读次数:165
HDOJ_1052
思路; 如果田最快大于王最快,则count++; 如果田最快小于王最慢,则用田最慢比掉王最快,count--; 如果田最快等于王最快,则比较田最慢与王最慢 如果田最慢大于王最慢则count++; 如果田最慢小于网最慢则count--; 如果田最慢等于王最慢,则有两种情况: 第一种:田的最慢等于王的最 ...
分类:其他好文   时间:2018-07-24 12:26:46    阅读次数:148
HDOJ:1051
#include #include #include #define K 5001 using namespace std; struct st { int l; int w; bool t; }a[K]; bool cmp(st a,st b) { if(a.l==b.l) return a.w>... ...
分类:其他好文   时间:2018-07-23 12:50:07    阅读次数:138
openstack常见问题(一)
当你安装遇到这个问题,是因为你没有安装Neutron编译安装需要的python依赖包 依赖包:python-networking-bigswitch 安装方法: yum源安装 ...
分类:其他好文   时间:2018-07-22 20:52:22    阅读次数:323
Linux MySQL 修改密码
修改root本地登录密码 修改root默认的密码(方法一)1. 启动mysql之后systemctl start mysqld.service2. 修改mysql的配置文件 vi /etc/my.cnf找到[mysqld]skip-grant-tablesskip-networking 3. 重启m ...
分类:数据库   时间:2018-07-21 14:56:06    阅读次数:273
hdoj 1789(贪心)
1.记一下结构体用sort的模板。 2.注意一下贪心。 ...
分类:其他好文   时间:2018-07-13 01:22:03    阅读次数:143
hdoj 1258(DFS)
#include <iostream> #include <cstdio> #include <cmath> #include <cstring> #include <algorithm> using namespace std; int a[100],n,m,b[100],flag; void p ...
分类:其他好文   时间:2018-07-09 16:27:23    阅读次数:116
hdoj 1518(DFS)
#include <iostream> #include <cstdio>#include <cmath>#include <cstring>#include <algorithm>using namespace std;int n, a[25], visit[25], side, flag = 0 ...
分类:其他好文   时间:2018-07-09 16:25:12    阅读次数:121
3176条   上一页 1 ... 27 28 29 30 31 ... 318 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!