307608: CF1382B. Sequential Nim
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Sequential Nim
题意翻译
有 $n$ 堆石子,第 $i$ 堆有 $a_i$ 个。有两个人在玩取石子游戏。 两个人轮流取石子,每次取编号最小且有石子的堆。每个人可以在一堆石子中取走若干个(至少取 $1$ 个),当一个人没有石子可以取了,他就输了。 现在给出每堆石子的数量,假设两人的都采用最优策略,问最后是先手 (first) 胜利还是后手 (second) 胜利。题目描述
There are $ n $ piles of stones, where the $ i $ -th pile has $ a_i $ 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\le t\le 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\le n\le 10^5 $ ) — the number of piles. The second line of each test case contains $ n $ integers $ a_1,\ldots,a_n $ ( $ 1\le a_i\le 10^9 $ ) — $ a_i $ 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 $ 10^5 $ .
输出格式
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