标签:逆时针 com net can std 简单 wpa 变换 pre
好久没动弹了。。动弹一下。。
题目 http://acm.hdu.edu.cn/showproblem.php?pid=1033
题意很简单,起点在(300,420),每次移动10单位,第一次向右移,给你一串字符,若为A则顺时针,为V则逆时针。
这里可以用仿射变换中的旋转变换,
于是可以大大减少代码量。
#include<cstdio> char s[205]; int x,y,dx,dy,t,i; int main(){ while(scanf("%s",s)!=EOF){ x=300;y=420;dx=10;dy=0; printf("%d %d moveto\n",x,y); printf("%d %d lineto\n",x+=dx,y+=dy); for(i=0;s[i]!=0;i++){ if(s[i]==‘A‘){t=dy;dy=-dx;dx=t;} else {t=-dy;dy=dx;dx=t;} printf("%d %d lineto\n",x+=dx,y+=dy); } printf("stroke\nshowpage\n"); } }
标签:逆时针 com net can std 简单 wpa 变换 pre
原文地址:http://www.cnblogs.com/moris/p/6917350.html