トップページに戻る    次の競技プログラミングの問題へ    前の競技プログラミングの問題へ

ABC-071-B Not Found

■■■問題■■■

英小文字からなる文字列Sが与えられます。
Sに現れない英小文字であって、最も辞書順(アルファベット順)で小さいものを求めてください。

ただし、Sにすべての英小文字が現れる場合は、
代わりにNoneを出力してください。

■■■入力■■■

S

●1 <= |S| <= 10万 (|S| は文字列Sの長さ)
●Sは英小文字のみからなる

■■■出力■■■

Sに現れない英小文字であって、最も辞書順で小さいものを出力せよ。
ただし、Sにすべての英小文字が現れる場合は、
代わりにNoneを出力せよ。


C#のソース

using System;
using System.Collections.Generic;

class Program
{
    static string InputPattern = "Input1";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("atcoderregularcontest");
            //b
            //atcoderregularcontestという文字列には
            //aは現れますがbは現れません。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("abcdefghijklmnopqrstuvwxyz");
            //None
            //この文字列には、すべての英小文字が現れます
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("fajsonlslfepbjtsaayxbymeskptcumtwrmkkinjxnnucagfrg");
            //d
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string S = InputList[0];

        var CharSet = new HashSet<char>(S);

        for (char I = 'a'; I <= 'z'; I++) {
            if (CharSet.Contains(I) == false) {
                Console.WriteLine(I);
                return;
            }
        }
        Console.WriteLine("None");
    }
}


解説

HashSetで、Sに存在する文字を管理してます。