Coloring Dominoes

Coloring Dominoes

时间限制: 1 Sec 内存限制: 128 MB 
原题链接 https://arc081.contest.atcoder.jp/tasks/ARC081_B

题目描述

We have a board with a 2×N grid. Snuke covered the board with N dominoes without overlaps. Here, a domino can cover a 1×2 or 2×1 square. 
Then, Snuke decided to paint these dominoes using three colors: red, cyan and green. Two dominoes that are adjacent by side should be painted by different colors. Here, it is not always necessary to use all three colors. 
Find the number of such ways to paint the dominoes, modulo 1000000007. 
The arrangement of the dominoes is given to you as two strings S1 and S2 in the following manner: 
Each domino is represented by a different English letter (lowercase or uppercase). 
The j-th character in Si represents the domino that occupies the square at the i-th row from the top and j-th column from the left.

Constraints 
1≤N≤52 
|S1|=|S2|=N 
S1 and S2 consist of lowercase and uppercase English letters. 
S1 and S2 represent a valid arrangement of dominoes.

输入

Input is given from Standard Input in the following format: 

S1 
S2

输出

Print the number of such ways to paint the dominoes, modulo 1000000007.

样例输入


aab 
ccb

样例输出

6

题解

由于区域的宽度只有2,且每个多米诺骨牌也只能占据连续的两格,对于列而言,只有两种摆法,竖着1个或者横着两个。

 

#include <iostream>
#include <string>
using namespace std;
int main(){
int i,N,a;
long long ans;
string S;
string T;
cin >> N >> S >> T;;
	if(N==1){
	cout << 3 << endl; //C3 1
	}else if(N==2){
	cout << 6 << endl;  //c3 1*c2 1
	}else{
	if(S[0] == T[0]){    //竖着
		ans = 3;
		a = 1;           //判断左边是竖着还是横着 竖着a==1;横着a==0;
		i = 1;
	while(i!=N){
		if(S[i] == T[i]){
			i += 1;  //有i个竖着的,竖着的占一列
			if(a==1){
				ans = 2*ans;
				a = 1;
			}else{
				ans = ans;
				a = 1;
		}
		}else{
			i += 2; //横着的占两列
			if(a==1){ //如果左边是竖着的
				ans = 2*ans;   //和左边不一样C2 1
				a = 0;
			}else{
				ans = 3*ans;   //和左边不一样(C2 1*C1 1+C1 1*C1 1)
				a = 0;
			}
			}
		}
	}else{
		ans = 6;     //横着C3 1*C2 1
		a = 0;
		i = 2;
	while(i!=N){
		if(S[i] == T[i]){
			i +=1;
			if(a==1){
				ans = 2*ans;
				a = 1;
			}else{
				ans = ans;
				a = 1;
		}
		}else{
			i +=2;
			if(a==1){
				ans = 2*ans;
				a = 0;
			}else{
				ans = 3*ans;
				a = 0;
			}
			}
		}
	}
cout << ans%1000000007 << endl;
	}
}


 

1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值