HDU - 1033 Edge 【模拟】
题目链接
http://acm.hdu.edu.cn/showproblem.php?pid=1033
题意
给定一个起始点 300 420 
走的第一步是 310 420
下面的每一步 都由 输入决定
如果输入 V 那么就往左边走10个单位长度
比如 样例一 给的V  走到上面了 
因为它本来的方向是 右边  那么 对于它的左边 其实就是上边
如果输入A 就往右边走10个单位长度
思路 
可以定义方向
up 0 right 1 down 2 left 3
然后 给定V 就是 dis– 给A 就是 dis++
但是要注意  如果dis <0  dis 应该为3 
dis 如果>=4 应该 模3
AC代码
#include <cstdio>
#include <cstring>
#include <ctype.h>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <deque>
#include <vector>
#include <queue>
#include <string>
#include <map>
#include <stack>
#include <set>
#include <list>
#include <numeric>
#include <sstream>
#include <iomanip>
#include <limits>
#define CLR(a, b) memset(a, (b), sizeof(a))
#define pb push_back
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
typedef pair<string, int> psi;
typedef pair<string, string> pss;
const double PI = acos(-1.0);
const double E = exp(1.0);
const double eps = 1e-8;
const int INF = 0x3f3f3f3f;
const int maxn = 1e6 + 5;
const int MOD = 1e9 + 7;
int Move[4][2]
{
      0, 10, // up
     10,  0, // right
      0,-10, // down
    -10,  0, // left
};
int main()
{
    string s;
    while (cin >> s)
    {
        int len = s.size();
        printf("300 420 moveto\n");
        printf("310 420 lineto\n");
        // up 0 right 1 down 2 left 3
        int x = 310, y = 420, dir = 1;
        for (int i = 0; i < len; i++)
        {
            if (s[i] == 'V')
                dir--;
            else
                dir++;
            if (dir < 0)
                dir = 3;
            dir %= 4;
            x += Move[dir][0];
            y += Move[dir][1];
            printf("%d %d lineto\n", x, y);
        }
        printf("stroke\n");
        printf("showpage\n");
    }
}HDU - 1033 Edge 【模拟】的更多相关文章
- HDU 1033 Edge[地图型模拟/给你一串字符串,A代表以此点为参照顺时针90°,V代表逆时针90°]
		Edge Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submis ... 
- HDU 1033	- Edge
		题目很水 然翻译感人 顺时针或者逆时针走,输出坐标 #include <iostream> using namespace std; ]; int p; ]={,,,-,}; ]={,,- ... 
- HDU 1033(坐标移动 模拟)
		题意是说有一点从(300,410)的位置出发,向右移动到(310,410)后开始转向,A 表示向顺时针转,V 表示向逆时针转,每次转向后沿当前方向前进 10 个单位, 输出其坐标,再补充一点格式上的东 ... 
- HDU 1033
		http://acm.hdu.edu.cn/showproblem.php?pid=1033 这题的题干说的很绕,结合样例不难理解题意,走折线,A代表顺时针,V代表逆时针,给一个包含A和V的字符串,输 ... 
- HDU 4121 Xiangqi 模拟题
		Xiangqi Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=4121 ... 
- hdu 5071 Chat(模拟)
		题目链接:hdu 5071 Chat 题目大意:模拟题. .. 注意最后说bye的时候仅仅要和讲过话的妹子说再见. 解题思路:用一个map记录每一个等级的妹子讲过多少话以及是否有这个等级的妹子.数组A ... 
- hdu 4740【模拟+深搜】.cpp
		题意: 给出老虎的起始点.方向和驴的起始点.方向.. 规定老虎和驴都不会走自己走过的方格,并且当没路走的时候,驴会右转,老虎会左转.. 当转了一次还没路走就会停下来.. 问他们有没有可能在某一格相遇. ... 
- HDU 2568[前进]模拟
		题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2568 关键思想:傻傻地模拟 代码如下: #include<iostream> using ... 
- hdu 4964 恶心模拟
		http://acm.hdu.edu.cn/showproblem.php?pid=4964 给定语句,按照语法翻译html并输出. 就是恶心的模拟,递归搞就行了 处理id和class时,在一个'&g ... 
随机推荐
- Nginx实现虚拟主机
			因为IP地址有限,因此经常存在多个主机域名对应着同一个IP地址的情况,可以通过配置虚拟主机来解决这个问题. 在nginx.conf中,每个server块就是一个虚拟主机,它只会处理与其server_n ... 
- jquery 插件:chosen
			options 文档 https://harvesthq.github.io/chosen/options.html 官网: http://plugins.jquery.com/chosen/ 
- listItem选中状态高亮
			两种方法1.在adapter中添加方法changeSelected()int mSelect = 0; //mSelect为选中项public void changeSelected(int posi ... 
- Ubuntu下git使用
			sudo apt-get install git //安装git git config --global user.name "github 用户名" git config --g ... 
- kernel BUG
			https://kernelnewbies.org/FAQ/BUG BUG() and BUG_ON(condition) are used as a debugging help when some ... 
- docker 让容器执行命令 与 进入容器交互
			直接执行命令docker exec mynginx cat /etc/nginx/nginx.conf 进入容器交互docker exec -it 80nginx /bin/bash 
- lua学习笔记(八)
			元表与元方法 基本概念 1.lua中每个值都有一个元表 2.table和userdata可以有各自独立的元表 3.其它类型的值共享其类型所属的单一 ... 
- JS-以鼠标位置为中心的滑轮放大功能demo1
			以鼠标位置为中心的滑轮放大功能demo1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" &qu ... 
- Quartz.Net - Lesson 1: 使用Quartz
			Lesson 1: 使用Quartz 本系列文章是官方3.x文档的翻译,原文地址:https://www.quartz-scheduler.net/documentation/quartz-3.x/t ... 
- mybatis 单一参数时的动态语句
			public void getBookList(String publisher,String author){ Map<String,Object> maps = new HashMap ... 
