AtCoder Beginner Contest 082 - D - FT Robot (set||DP)

本文介绍了一个关于二维平面上机器人路径规划的问题,通过解析指令序列来判断机器人是否能够达到指定坐标。采用类似母函数的DP实现方法,并使用set进行存储与更新。

D - FT Robot


Time limit : 2sec / Memory limit : 512MB

Score : 500 points

Problem Statement

A robot is put at the origin in a two-dimensional plane. Initially, the robot is facing in the positive x-axis direction.

This robot will be given an instruction sequence ss consists of the following two kinds of letters, and will be executed in order from front to back.

  • F : Move in the current direction by distance 1.
  • T : Turn 90 degrees, either clockwise or counterclockwise.

The objective of the robot is to be at coordinates (x,y) after all the instructions are executed. Determine whether this objective is achievable.

Constraints

  • s consists of F and T.
  • 1|s|8 000
  • x and y are integers.
  • |x|,|y||s|

Input

Input is given from Standard Input in the following format:

s
x y

Output

If the objective is achievable, print Yes; if it is not, print No.

题意:

T转方向,可以任意逆或者顺,F往前走。

问你能不能到达x,y


POINT:

类似母函数的DP实现。

我用set实现了,比较慢


#include <set>
#include <map>
#include <math.h>
#include <vector>
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
const double eps = 1e-8;
using namespace std;
 
set<int> x;
set<int> y;
set<int>::iterator it;
 
void doit(int a,int now)
{
	if(now==0) return;
	if(a==1){
		set<int> y_;
		y_.clear();
		for(it = y.begin();it!=y.end();it++){
			y_.insert(*it-now);
			y_.insert(*it+now);
		}
		y.clear();
		for(it = y_.begin();it!=y_.end();it++){
			y.insert(*it);
			y.insert(*it);
		}
	}else{
		set<int> x_;
		x_.clear();
		for(it = x.begin();it!=x.end();it++){
			x_.insert(*it-now);
			x_.insert(*it+now);
		}
		x.clear();
		for(it = x_.begin();it!=x_.end();it++){
			x.insert(*it);
			x.insert(*it);
		}
	}
}
 
int main()
{
	string s;
	cin>>s;
	int xx,yy;
	scanf("%d%d",&xx,&yy);
	int now=0;
	int i;
	for(i=0;i<s.length();i++){
		if(s[i]=='F'){
			now++;
		}else{
			break;
		}
	}
	x.insert(now+10000);
	y.insert(10000);
	int a=1;
	now=0;
	for(i++;i<s.length();i++){
		if(s[i]=='F'){
			now++;
		}else{
			doit(a,now);
			a^=1;
			now=0;
		}
	}
	doit(a,now);
	if(x.find(xx+10000)!=x.end()&&y.find(yy+10000)!=y.end()){
		printf("Yes\n");
	}else
		printf("No\n");
 
 
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值