华为0j 016

【华为OJ】【016-坐标移动】

题目链接:

https://blog.csdn.net/DERRANTCM/article/details/51328464

C++实现:

void main()
{
	string str1,strOut;
	vector<string> strList,strValid;
	cin >> str1;
	str1 = "A10;S20;W10;D30;X;A1A;B10A11;;A10;";
	//分割字符串
	string::size_type pos1 = 0,pos2;
	pos2 = str1.find(";");
	while(pos2 != str1.npos)
	{
		strList.push_back(str1.substr(pos1,pos2-pos1));
		pos1 = pos2 + 1;
		pos2 = str1.find(";",pos1);
	}
	
	regex r("^[AWSD]([0-9]{1,2})$");
	char dir;
	int x1=0,y1=0,n1,n2;
	stringstream ss;

	for (int i=0;i<strList.size();i++)
	{
		if (regex_match(strList[i],r))
		{
			strValid.push_back(strList[i]);

			dir = strList[i].at(0);

			string strTem = strList[i].substr(1);
			ss.clear();//不清空转换结果会一直是第一次的
			ss << strTem;
			ss >> n1;

			switch(dir)
			{
			case 'W':
				y1 += n1;
				break;
			case 'S':
				y1 -= n1;
				break;
			case 'A':
				x1 -= n1;
				break;
			case 'D':
				x1 += n1;
				break;
			}
		}
	}
	cout << x1 << "," << y1 << endl;

	system("pause");
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值