A11221 | 1-2-3
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ilya is working for the company that constructs robots. Ilya writes programs for entertainment robots, and his current project is "Bob", a new-generation game robot. Ilya's boss wants to know his progress so far. Especially he is interested if Bob is better at playing different games than the previous model, "Alice".
So now Ilya wants to compare his robots' performance in a simple game called "1-2-3". This game is similar to the "Rock-Paper-Scissors" game: both robots secretly choose a number from the set ${1,2,3}$ and say it at the same moment. If both robots choose the same number, then it's a draw and noone gets any points. But if chosen numbers are different, then one of the robots gets a point: $3$ beats $2$ , $2$ beats $1$ and $1$ beats $3$ .
Both robots' programs make them choose their numbers in such a way that their choice in $(i+1)$ -th game depends only on the numbers chosen by them in $i$ -th game.
Ilya knows that the robots will play $k$ games, Alice will choose number $a$ in the first game, and Bob will choose $b$ in the first game. He also knows both robots' programs and can tell what each robot will choose depending on their choices in previous game. Ilya doesn't want to wait until robots play all $k$ games, so he asks you to predict the number of points they will have after the final game.
So now Ilya wants to compare his robots' performance in a simple game called "1-2-3". This game is similar to the "Rock-Paper-Scissors" game: both robots secretly choose a number from the set ${1,2,3}$ and say it at the same moment. If both robots choose the same number, then it's a draw and noone gets any points. But if chosen numbers are different, then one of the robots gets a point: $3$ beats $2$ , $2$ beats $1$ and $1$ beats $3$ .
Both robots' programs make them choose their numbers in such a way that their choice in $(i+1)$ -th game depends only on the numbers chosen by them in $i$ -th game.
Ilya knows that the robots will play $k$ games, Alice will choose number $a$ in the first game, and Bob will choose $b$ in the first game. He also knows both robots' programs and can tell what each robot will choose depending on their choices in previous game. Ilya doesn't want to wait until robots play all $k$ games, so he asks you to predict the number of points they will have after the final game.
输入格式
The first line contains three numbers $k$ , $a$ , $b$ ( $1<=k<=10^{18}$ , $1<=a,b<=3$ ).
Then $3$ lines follow, $i$ -th of them containing $3$ numbers $A_{i,1}$ , $A_{i,2}$ , $A_{i,3}$ , where $A_{i,j}$ represents Alice's choice in the game if Alice chose $i$ in previous game and Bob chose $j$ ( $1<=A_{i,j}<=3$ ).
Then $3$ lines follow, $i$ -th of them containing $3$ numbers $B_{i,1}$ , $B_{i,2}$ , $B_{i,3}$ , where $B_{i,j}$ represents Bob's choice in the game if Alice chose $i$ in previous game and Bob chose $j$ ( $1<=B_{i,j}<=3$ ).
Then $3$ lines follow, $i$ -th of them containing $3$ numbers $A_{i,1}$ , $A_{i,2}$ , $A_{i,3}$ , where $A_{i,j}$ represents Alice's choice in the game if Alice chose $i$ in previous game and Bob chose $j$ ( $1<=A_{i,j}<=3$ ).
Then $3$ lines follow, $i$ -th of them containing $3$ numbers $B_{i,1}$ , $B_{i,2}$ , $B_{i,3}$ , where $B_{i,j}$ represents Bob's choice in the game if Alice chose $i$ in previous game and Bob chose $j$ ( $1<=B_{i,j}<=3$ ).
输出格式
Print two numbers. First of them has to be equal to the number of points Alice will have, and second of them must be Bob's score after $k$ games.
输入输出样例
输入 #1
10 2 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2
输出 #1
1 9
输入 #2
8 1 1 2 2 1 3 3 1 3 1 3 1 1 1 2 1 1 1 2 3
输出 #2
5 2
输入 #3
5 1 1 1 2 2 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2
输出 #3
0 0
In the second example game goes like this:

The fourth and the seventh game are won by Bob, the first game is draw and the rest are won by Alice.

The fourth and the seventh game are won by Bob, the first game is draw and the rest are won by Alice.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted