Codeforces Round #355 (Div. 2) Vanya and Label

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #355 (Div. 2) Vanya and Label相关的知识,希望对你有一定的参考价值。

这道题很注重转化,其实质其实是将字符串每个字符转换成对应的数字后,按照6位进行二进制转化,然后统计0出现的次数,0&1=0,1&0=1,0&0=0,有些人用了快速幂,实际上这完全没有必要,但是一定要用long long。

#include  <iostream>
#include  <cstdio>
#include  <string>
using namespace std;
const long long MOD=1e9+7;
string s;

int GetNum(char ch)
{
	if(ch>=‘0‘&&ch<=‘9‘)
		return ch-‘0‘;
	if(ch>=‘A‘&&ch<=‘Z‘)
		return ch-‘A‘+10;
	if(ch>=‘a‘&&ch<=‘z‘)
		return ch-‘a‘+36;
	if(ch==‘-‘)
		return 62;
	if(ch=‘_‘)
		return 63;
}

long long ans=1;
int main()
{
	cin>>s;
	for(int i=0;i<s.size();i++)
	{
		int tag=GetNum(s[i]);
		int cnt=0;
		for(int j=0;j<6;j++)
		{
			if(!(tag&1))
				cnt++;
			tag>>=1;
		}
		for(int i=1;i<=cnt;i++)
			ans=ans*3%MOD;
	}
	printf("%I64d\n",ans);
	return 0;
}

  

以上是关于Codeforces Round #355 (Div. 2) Vanya and Label的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #355 (Div. 2)

Codeforces Round #355 (Div. 2)

Codeforces Round #355 (Div. 2) D. Vanya and Treasure 分治暴力

Codeforces Round #355 (Div. 2) Vanya and Label

Codeforces Round #355 (Div. 2) Vanya and Treasure

Codeforces Round #436 E. Fire(背包dp+输出路径)