CF1312F.Attack on Red Kingdom
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 ai 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≤t≤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≤n≤3⋅105 , 1≤x,y,z≤5 ).
The second line contains n integers a1 , a2 , ..., an ( 1≤ai≤1018 ).
It is guaranteed that the sum of values of n over all test cases in the input does not exceed 3⋅105 .
输出格式
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