日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

Codeforces Round #429 (Div. 2):B. Godsend

發(fā)布時(shí)間:2024/3/24 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Codeforces Round #429 (Div. 2):B. Godsend 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

題目:

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 Note

In first sample first player remove whole array in one move and win.

In second sample first player can't make a move and lose.

題意:給出一個(gè)數(shù)組,有兩個(gè)人玩游戲,游戲規(guī)則:第一個(gè)人選取連續(xù)的子區(qū)間并且區(qū)間的和為奇數(shù),第二個(gè)人選取連續(xù)的子區(qū)間并且區(qū)間和為偶數(shù)。當(dāng)有人不能選擇這樣的一個(gè)區(qū)間時(shí),那么這個(gè)人就輸了,問(wèn)那個(gè)人會(huì)贏?

思路:思維題。容易看出,當(dāng)存在一個(gè)奇數(shù)的時(shí)候第一個(gè)人會(huì)贏,否則第二個(gè)人會(huì)贏。另奇數(shù)的個(gè)數(shù)為x,當(dāng)x為偶數(shù)時(shí),第一個(gè)人只需選取最后一個(gè)奇數(shù)前的區(qū)間,那么無(wú)論第二個(gè)人怎么選都會(huì)存在和為奇數(shù)的區(qū)間;當(dāng)x為奇數(shù)時(shí),此時(shí)整個(gè)數(shù)組的和為奇數(shù)滿足條件,第一個(gè)人直接選擇整個(gè)數(shù)組~

code:

#include<bits/stdc++.h> using namespace std; int a[1000005]; int main() {int n,i,x;while(~scanf("%d",&n)){x=0;for(i=0;i<n;i++){scanf("%d",&a[i]);if(a[i]%2) x++;}if(x) puts("First");else puts("Second");}return 0; }


總結(jié)

以上是生活随笔為你收集整理的Codeforces Round #429 (Div. 2):B. Godsend的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。