Poj 2895 水题,练练手


计算在手机上输入一个字符串需要多长时间、 

同一个键上的字符需要 等待w时间。 空格键不用等。

按一次键需要p时间。



#include<iostream>
#include<cstdio>
#include<string>
using namespace std;
int Button(char c)
{
	if(c==' ') return 1;
	if( 'A'<=c && c<='O' ) return (c-'A')/3+2;
	else if( 'P'<=c && c<='S' ) return 7; 
	else if( 'T'<=c && c<='V' ) return 8; 
	else if( 'W'<=c && c<='Z' ) return 9; 
}

char first[10]={0,' ','A','D','G','J',
	'M','P','T','W'};
int Hits(char c)
{
	return c-first[Button(c)]+1;
}
int main(int argc, const char *argv[])
{
	int t;
	int p,w;
	string line;


	cin>>t;
	while(t--){
		cin>>p>>w; getchar();
		getline(cin,line);


		int cnt = 0;
		int preButton = 0;
		int curButton ;
		for( int i=0;i<line.size();i++){
			curButton = Button(line[i]);
			if(curButton!=1 && curButton == preButton ) cnt += w;
			cnt += p * Hits(line[i]);
			preButton = curButton;
		}
		cout<<cnt<<endl;
	}
	//system("pause");
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值