[AtCoder][ARC081]Coloring Dominoes 题解
2018-07-28 06:11:05来源:博客园 阅读 ()
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:
N
S1
S2
输出
Print the number of such ways to paint the dominoes, modulo 1000000007.
样例输入
3
aab
ccb
样例输出
6
题解
由于区域的宽度只有2,且每个多米诺骨牌也只能占据连续的两格,因此对于任意一列而言,只有两种摆法,竖着1个或者横着两个。
因此,通过数学规律可以计算出涂色的可能性。
代码
#include <iostream> #include <string> #define ull unsigned long long #define MO 1000000007 using namespace std; int n, k, c; string s1, s2; ull ans; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); cin >> n >> s1 >> s2; if (s1[0] == s2[0])c = 1, ans = 3; else c = 2, ans = 6; k = c; while (k < n) { if (s1[k] == s2[k]) { ans *= 3 - c; c = 1; } else { ans *= c + 1; c = 2;//Skip 2 } k += c; ans %= MO; } cout << ans; return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- AtCoder Beginner Contest 162(A~D) 2020-04-15
- AtCoder Beginner Contest 160(A~D) 2020-03-29
- AtCoder Grand Contest 043--A - Range Flip Find Route 2020-03-22
- AtCoder arc078_d Mole and Abandoned Mine 2020-02-17
- AtCoder agc007_d Shik and Game 2020-02-08
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash