Robot Framework是一个由python构建的的开源的自动化测试框架,现在版本还在不停的更新中。由于它开源性,网上有大量的第三方接口和很多资料。下面提供两个比较官方的链接,有兴趣的同学可以直接去看,这篇文章只是我个人的一些总结和理解。 http://robotframework.org/ ...
分类:
其他好文 时间:
2014-07-09 21:26:04
阅读次数:
249
HDU 4576 Robot(概率题)
题目大意:
第一行4个数字表示:一块圆盘上有n个格子,m个操作,l,r表示区间,接下来m行,每行1个数字w,机器人一开始在1号格子,对于每个操作会顺时针或者逆时针移动w格,问你最终停在区间[l,r]的概率。
解题思路:
去年去杭州比赛遇到了这题,当时因为这题超时打铁了,真心感觉自己当时弱爆了!!
现在回过头来看这题,好简单
第i号格子其实就是只能由 i-w号格子 与i+w号格子得来,而且概率各占1半,所以注意边界,用滚动的思想就行了。...
分类:
其他好文 时间:
2014-07-03 13:49:37
阅读次数:
251
经常在做webqq机器人,但是最头痛的问题就是腾讯经常加一些验证串来防止robot,现在共享出最新的腾讯密码加密算法和hash
算法
hash算法
def webqq_hash(i, a):
if isinstance(i, (str, unicode)):
i = int(i)
class b:
def __init__(self, _b,...
分类:
Web程序 时间:
2014-07-01 07:54:48
阅读次数:
272
A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
分类:
其他好文 时间:
2014-06-28 16:02:43
阅读次数:
214
题目链接:POJ 1573 Robot Motion
一个小模拟,很简单,按照提示一步步走就是了
#include
#include
#include
#include
#include
using namespace std;
int n = 0,m = 0,st = 0;
int map[10][20],dis[10][20];;...
分类:
其他好文 时间:
2014-06-22 18:14:23
阅读次数:
182
主要是思维,dis[s][t]数组的作用#include #include #include int map[101][101];int v[101][101],dis[101][101];int n,m,x;int jx[]={-1,1,0,0};int jy[]={0,0,-1,1};void ...
分类:
其他好文 时间:
2014-06-18 08:25:38
阅读次数:
205
Robot Motion
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10219
Accepted: 4977
Description
A robot has been programmed to follow the instructions in...
分类:
其他好文 时间:
2014-06-17 22:41:33
阅读次数:
294
原题地址:https://oj.leetcode.com/problems/unique-paths/题意:A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The ...
分类:
编程语言 时间:
2014-06-15 23:37:55
阅读次数:
311
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying to reach the...
分类:
其他好文 时间:
2014-06-15 19:28:54
阅读次数:
246
题目链接:
http://poj.org/problem?id=1573
题目:
Robot Motion
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10202
Accepted: 4971
Description
A robot h...
分类:
其他好文 时间:
2014-06-14 07:44:51
阅读次数:
244