一、 robot framework环境搭建: 官网:http://robotframework.org/ 序号安装包名安装方法下载地址备注1pythonexe文件,直接双击安装https://www.python.org/download/releases/2.7.8/一切的基础,安装...
分类:
其他好文 时间:
2014-07-22 22:53:15
阅读次数:
213
Robot MotionTime Limit: 1000 MS Memory Limit: 10000 KB64-bit integer IO format: %I64d , %I64u Java class name: Main[Submit] [Status] [Discuss]Descript...
分类:
其他好文 时间:
2014-07-19 16:19:18
阅读次数:
217
题意:给你一个棋盘,上面的字母代表机器人要走的方向。如果机器人能走出这个棋盘,则输出机器人所走的步数,否则输出该机器人在走向无限循环前所走的步数,及无限循环所要走的格子数
思路:直接模拟,没有思路(大神可以多考虑些思路)
AC代码:
#include
#include
char str[12][12];
int flag[12][12];
int r,c,s,sum,loop;
void ...
分类:
其他好文 时间:
2014-07-18 12:23:10
阅读次数:
223
状态压缩dp#include#include#include#include#include#define maxn 16using namespace std;long long dp[1<<maxn];long long weapon[1<<maxn];int robot[maxn];char ...
分类:
其他好文 时间:
2014-07-16 18:35:59
阅读次数:
228
有时候,在Java应用程序开发中,如:远程监控或远程教学,常常需要对计算机的屏幕进行截取,由于屏幕截取是比较接近操作系统的操作,在Windows操作系统下,该操作几乎成了VC、VB等的专利,事实上,使用Java JDK1.4 的Robot对象,来完成"屏幕截取操作,更加简单。Java JDK1.4 ...
分类:
编程语言 时间:
2014-07-14 18:53:36
阅读次数:
302
poj1573&&hdu1035 Robot Motion(模拟题)...
分类:
其他好文 时间:
2014-07-14 13:45:22
阅读次数:
211
Robot Motion
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10280
Accepted: 5006
Description
A robot has been programmed to follow the instructions in...
分类:
其他好文 时间:
2014-07-09 11:24:57
阅读次数:
290
Robot Motion
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10280
Accepted: 5006
Description
A robot has been programmed to follow the instructions in...
分类:
其他好文 时间:
2014-07-09 11:24:16
阅读次数:
196
Robot Motion
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10267
Accepted: 5001
Description
A robot has been programmed to follow the instructions ...
分类:
其他好文 时间:
2014-07-08 19:13:43
阅读次数:
203
Java取色器中调用了robot方法的getPixelColor方法下面我们来看robot类中方法的具体实现如下
getPixelColor
public Color getPixelColor(int x,
int y)
返回给定屏幕坐标处的像素颜色。
参数:x - 像素的 X 位置y - 像素的 Y 位置 返回:
像素的颜...
分类:
编程语言 时间:
2014-07-08 16:04:16
阅读次数:
183