307167: CF1312F. Attack on Red Kingdom

Memory Limit:512 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Attack on Red Kingdom

题意翻译

有 $n$ 个数,第 $i$ 个为 $a_i$,有甲、乙两人轮流操作,甲先操作。 一次操作有 3 个选项: 1. 将一个大于 $0$ 的数减 $x$ 2. 将一个大于 $0$ 的数减 $y$ 3. 将一个大于 $0$ 的数减 $z$ 如果操作后该数小于 $0$ ,则变为 $0$ . 设这次操作的数为第 $i$ 个,如果对他的上一次操作是第 2 种,则这次不能对他进行第 2 种操作。 第 3 种操作也是如此,但第一种操作没有限制。 若有人不能操作,他就输了。 多组数据,每次询问:甲先手,第一步有多少种操作办法使得自己必胜。

题目描述

The Red Kingdom is attacked by the White King and the Black King! The Kingdom is guarded by $ n $ castles, the $ i $ -th castle is defended by $ a_i $ soldiers. To conquer the Red Kingdom, the Kings have to eliminate all the defenders. Each day the White King launches an attack on one of the castles. Then, at night, the forces of the Black King attack a castle (possibly the same one). Then the White King attacks a castle, then the Black King, and so on. The first attack is performed by the White King. Each attack must target a castle with at least one alive defender in it. There are three types of attacks: - a mixed attack decreases the number of defenders in the targeted castle by $ x $ (or sets it to $ 0 $ if there are already less than $ x $ defenders); - an infantry attack decreases the number of defenders in the targeted castle by $ y $ (or sets it to $ 0 $ if there are already less than $ y $ defenders); - a cavalry attack decreases the number of defenders in the targeted castle by $ z $ (or sets it to $ 0 $ if there are already less than $ z $ defenders). The mixed attack can be launched at any valid target (at any castle with at least one soldier). However, the infantry attack cannot be launched if the previous attack on the targeted castle had the same type, no matter when and by whom it was launched. The same applies to the cavalry attack. A castle that was not attacked at all can be targeted by any type of attack. The King who launches the last attack will be glorified as the conqueror of the Red Kingdom, so both Kings want to launch the last attack (and they are wise enough to find a strategy that allows them to do it no matter what are the actions of their opponent, if such strategy exists). The White King is leading his first attack, and you are responsible for planning it. Can you calculate the number of possible options for the first attack that allow the White King to launch the last attack? Each option for the first attack is represented by the targeted castle and the type of attack, and two options are different if the targeted castles or the types of attack are different.

输入输出格式

输入格式


The first line contains one integer $ t $ ( $ 1 \le t \le 1000 $ ) — the number of test cases. Then, the test cases follow. Each test case is represented by two lines. The first line contains four integers $ n $ , $ x $ , $ y $ and $ z $ ( $ 1 \le n \le 3 \cdot 10^5 $ , $ 1 \le x, y, z \le 5 $ ). The second line contains $ n $ integers $ a_1 $ , $ a_2 $ , ..., $ a_n $ ( $ 1 \le a_i \le 10^{18} $ ). It is guaranteed that the sum of values of $ n $ over all test cases in the input does not exceed $ 3 \cdot 10^5 $ .

输出格式


For each test case, print the answer to it: the number of possible options for the first attack of the White King (or $ 0 $ , if the Black King can launch the last attack no matter how the White King acts).

输入输出样例

输入样例 #1

3
2 1 3 4
7 6
1 1 2 3
1
1 1 2 2
3

输出样例 #1

2
3
0

输入样例 #2

10
6 5 4 5
2 3 2 3 1 3
1 5 2 3
10
4 4 2 3
8 10 8 5
2 2 1 4
8 5
3 5 3 5
9 2 10
4 5 5 5
2 10 4 2
2 3 1 4
1 10
3 1 5 3
9 8 7
2 5 4 5
8 8
3 5 1 4
5 5 10

输出样例 #2

0
2
1
2
5
12
5
0
0
2

Input

题意翻译

有 $n$ 个数,第 $i$ 个为 $a_i$,有甲、乙两人轮流操作,甲先操作。 一次操作有 3 个选项: 1. 将一个大于 $0$ 的数减 $x$ 2. 将一个大于 $0$ 的数减 $y$ 3. 将一个大于 $0$ 的数减 $z$ 如果操作后该数小于 $0$ ,则变为 $0$ . 设这次操作的数为第 $i$ 个,如果对他的上一次操作是第 2 种,则这次不能对他进行第 2 种操作。 第 3 种操作也是如此,但第一种操作没有限制。 若有人不能操作,他就输了。 多组数据,每次询问:甲先手,第一步有多少种操作办法使得自己必胜。

加入题单

算法标签: