CF1382B.Sequential Nim
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n piles of stones, where the i -th pile has ai stones. Two people play a game, where they take alternating turns removing stones.
In a move, a player may remove a positive number of stones from the first non-empty pile (the pile with the minimal index, that has at least one stone). The first player who cannot make a move (because all piles are empty) loses the game. If both players play optimally, determine the winner of the game.
输入格式
The first line contains a single integer t ( 1≤t≤1000 ) — the number of test cases. Next 2t lines contain descriptions of test cases.
The first line of each test case contains a single integer n ( 1≤n≤105 ) — the number of piles.
The second line of each test case contains n integers a1,…,an ( 1≤ai≤109 ) — ai is equal to the number of stones in the i -th pile.
It is guaranteed that the sum of n for all test cases does not exceed 105 .
输出格式
For each test case, if the player who makes the first move will win, output "First". Otherwise, output "Second".
输入输出样例
输入#1
7 3 2 5 4 8 1 1 1 1 1 1 1 1 6 1 2 3 4 5 6 6 1 1 2 1 2 2 1 1000000000 5 1 2 2 1 1 3 1 1 1
输出#1
First Second Second First First Second First
说明/提示
In the first test case, the first player will win the game. His winning strategy is:
- The first player should take the stones from the first pile. He will take 1 stone. The numbers of stones in piles will be [1,5,4] .
- The second player should take the stones from the first pile. He will take 1 stone because he can't take any other number of stones. The numbers of stones in piles will be [0,5,4] .
- The first player should take the stones from the second pile because the first pile is empty. He will take 4 stones. The numbers of stones in piles will be [0,1,4] .
- The second player should take the stones from the second pile because the first pile is empty. He will take 1 stone because he can't take any other number of stones. The numbers of stones in piles will be [0,0,4] .
- The first player should take the stones from the third pile because the first and second piles are empty. He will take 4 stones. The numbers of stones in piles will be [0,0,0] .
- The second player will lose the game because all piles will be empty.