POJ2632
摘要:
模拟robot,用一个二维数组来存放各个robot的位置和方向,但是注意二维数组的方向和实际的相差90°,理解的时候需转换代码:#include <iostream>#include <string>#include <cstdio>#include <cstdlib>#include <cstring>using namespace std;typedef struct p{ int x; int y; int c;}P;int main(){ freopen("F://学习//算法//codeblock//11 阅读全文
posted @ 2012-03-08 16:48 Kahuna 阅读(339) 评论(0) 推荐(0) 编辑