题目链接:uva 11427 - Expect the Expected
题目大意:你每天晚上都会玩纸牌,每天固定最多玩n盘,每盘胜利的概率为p,你是一个固执的人,每天一定要保证胜局的比例大于p才会结束游戏,若n局后仍没有,就会不开心,然后以后再也不完牌,问说你最多会玩多少个晚上。
解题思路:当j/i ≤ p时有dp(i-1,j) (1-p) + dp(i-1, j-1)
p,其他d...
分类:
其他好文 时间:
2014-08-11 00:21:01
阅读次数:
208
服务器版本redhat6.4-64首先解决权限的问题:1.ssh-keygen##如果是root用户,生成的默认目录为/root/.ssh下2个文件id_rsa(公钥)id_rsa.pub(私钥)2.cd/root/.ssh/&&chmod600id_rsa*把这2个文件修改权限,为6003.ssh-copy-id-i/root/.ssh/id_rsaroot@192.168.200.1#..
分类:
其他好文 时间:
2014-08-07 13:28:00
阅读次数:
309
#test.sh
#!/bin/bash
dir=/home/test
whilereadline
do
host=`echo$line|awk‘{print$1}‘`
passwd=`echo$line|awk‘{print$2}‘`
$dir/expect_ssh.sh$host$passwd&
done<$dir/host.txt
#expect_ssh.sh
#!/usr/bin/envexpect
setHOST[lindex$argv0]
setPASSWD[lindex$argv..
分类:
系统相关 时间:
2014-08-05 11:33:10
阅读次数:
243
1.mysql自动登陆,系统自己输入密码(1)安装亿需要的软件[root@db2~]#yuminstallexpect-*(2)在脚本中写入命令#!/usr/bin/expect-f--使用expect软件settimeout2--输出密码时延时2秒spawnmysql-uroot-p--mysql登陆命令expect"system"--mysql的密码send"system\n"--mysql的密码inte..
分类:
数据库 时间:
2014-08-05 03:15:19
阅读次数:
265
利用expect的,首先查看expect,命令:which expect#!/usr/bin/expect -fspawn ssh 用户名@ip地址expect "assword:"send "password\r"interact自动输入密码,切换目录#!/usr/bin/expect -fspa...
分类:
其他好文 时间:
2014-08-04 10:37:46
阅读次数:
319
#!/usr/bin/expect -fspawn telnet 172.16.1.80expect "login" { send "admin\n" expect { "Password" { send "admin\n" } ...
分类:
Web程序 时间:
2014-08-02 20:51:24
阅读次数:
269
Expect是一个用来实现自动交互功能的软件套件(Expect[isa]softwaresuiteforautomatinginteractivetools)。Expect语言是基于Tcl的,作为一种脚本语言,Tcl具有简单的语法:cmdargargarg一条Tcl命令由空格分割的单词组成。第一个单词是命令名称,其余的是命令参数。脚本代码如下:#..
分类:
其他好文 时间:
2014-08-01 20:10:53
阅读次数:
272
--Strace跟踪解决expect乱码问题----------------------------------2014/07/27情景:需要在本机抓去另外一台远程数据库中的数据。执行语句:./ersh.exp "export LANG=en_US.UTF-8;mysql -uroot -S /tm...
分类:
其他好文 时间:
2014-07-27 23:03:59
阅读次数:
227
查看一个命令属于哪个rpm包[root@node1yum.repos.d]#whichssh-copy-id
/usr/bin/ssh-copy-id
Youhavenewmailin/var/spool/mail/root
[root@node1yum.repos.d]#rpm-qf/usr/bin/ssh-copy-id
openssh-clients-4.3p2-82.el5
分类:
其他好文 时间:
2014-07-23 21:27:46
阅读次数:
204