Codeforces Round #429 (Div2) B

B. Godsend

Leha somehow found an array consisting of n integers. Looking at it, he came up with a task. Two players play the game on the array. Players move one by one. The first player can choose for his move a subsegment of non-zero length with an odd sum of numbers and remove it from the array, after that the remaining parts are glued together into one array and the game continues. The second player can choose a subsegment of non-zero length with an even sum and remove it. Loses the one who can not make a move. Who will win if both play optimally?

Input

First line of input data contains single integer n (1 ≤ n ≤ 106) — length of the array.
Next line contains n integers a1, a2, …, an (0 ≤ ai ≤ 109).

Output

Output answer in single line. “First”, if first player wins, and “Second” otherwise (without quotes).

Examples

input
4
1 3 2 3
output
First
input
2
2 2
output
Second

【解题报告】
首先分情况讨论:
——1.如果总和是奇数得话->第一个人赢(全部取完)
——2.如果总和是偶数的话->
————2.1如果数组里没有奇数->第二个人赢(显然)
————2.2里面数组里有奇数->那么一定有两个奇数
——————所以取数的流程是:
——————第一个人取出奇数和(现在总和为奇数)->
——————第二个人取出偶数和(现在总和为偶数)->
——————第一个人取出奇数和(现在总和为奇数)->
——————总和为奇数,参见情况1
所以
数组中有奇数->第一个人赢
没有->第二个人赢

代码如下:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
#define N 1000010

int n,a;
bool flag=0;

int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;++i)
    {
        scanf("%d",&a);
        if(a%2) 
        {
            flag=1;
            break;
        }
    }
    puts(flag?"First":"Second");
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值