cf 276b 博弈

B. Little Girl and Game
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The Little Girl loves problems on games very much. Here's one of them.

Two players have got a string s, consisting of lowercase English letters. They play a game that is described by the following rules:

  • The players move in turns; In one move the player can remove an arbitrary letter from string s.
  • If the player before his turn can reorder the letters in string s so as to get a palindrome, this player wins. A palindrome is a string that reads the same both ways (from left to right, and vice versa). For example, string "abba" is a palindrome and string "abc" isn't.

Determine which player will win, provided that both sides play optimally well — the one who moves first or the one who moves second.

Input

The input contains a single line, containing string s (1 ≤ |s|  ≤  103). String s consists of lowercase English letters.

Output

In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.

Sample test(s)
input
aba
output
First
input
abca
output
Second





#include <iostream>
#include <cstring>
#include <algorithm>
#include <string>

using namespace std;

int cnt[26];

int main()
{
    string str;
    while(cin >> str){
        memset(cnt, 0, sizeof(cnt));
        for(int i = 0; i < str.length(); i++)
            cnt[str[i]-'a']++;

        int num = 1;
        for(int i = 0; i < str.length(); i++){
            int odd = 0;
            for(int j = 0; j < 26; j++)
                if(cnt[j]&1)
                odd++;

            if(odd <= 1) break;
            int flag = 0;
            for(int j = 0; j < 26; j++)
                if(cnt[j] && (cnt[j]&1) == 0){
                cnt[j]--, flag = 1;
                break;
                }
            if(!flag)
                for(int j = 0; j < 26; j++)
            if(cnt[j]){
                cnt[j]--;
                break;
            }
            num++;
        }

        if(num & 1)
            cout << "First\n";
        else cout << "Second\n";
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值