結果

問題 No.430 文字列検索
ユーザー mbanmban
提出日時 2017-02-09 11:23:35
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 3,222 bytes
コンパイル時間 3,238 ms
コンパイル使用メモリ 101,528 KB
実行使用メモリ 20,696 KB
最終ジャッジ日時 2023-08-26 17:47:55
合計ジャッジ時間 7,969 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,696 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Scanner
{
    private StreamReader Sr;
    private string[] S;
    private int Index;
    private const char Separator = ' ';
    public Scanner()
    {
        Index = 0;
        S = new string[0];
        Sr = new StreamReader(Console.OpenStandardInput());
    }
    private string[] Line()
    {
        return Sr.ReadLine().Split(Separator);
    }
    public string Next()
    {
        string result;
        if (Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }
    public string[] StringArray(int index = 0)
    {
        Next();
        Index = S.Length;
        return S.Skip(index).ToArray();
    }
    public int[] IntArray(int index = 0)
    {
        return StringArray(index).Select(int.Parse).ToArray();
    }
    public long[] LongArray(int index = 0)
    {
        return StringArray(index).Select(long.Parse).ToArray();
    }
    public bool EndOfStream
    {
        get { return Sr.EndOfStream; }
    }
}

public class Magatro
{
    private Scanner Sc;

    private string S;
    private int M;
    private string[] C;
    Dictionary<char, int> D;
    const string ABC = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    private void Scan()
    {
        Sc = new Scanner();
        S = Sc.Next();
        M = Sc.NextInt();
        C = new string[M];
        for (int i = 0; i < M; i++)
        {
            C[i] = Sc.Next();
        }
    }

    private long ToLong(string s)
    {
        long result = 0;
        long l = 1;
        foreach (char c in s)
        {
            result += D[c] * l;
            l *= 27;
        }
        return result;
    }

    public void Solve()
    {
        Scan();
        D = new Dictionary<char, int>();
        for (int i = 0; i < 26; i++)
        {
            D.Add(ABC[i], i+1);
        }
        long count = 0;
        foreach (string s in C)
        {
            long search = ToLong(s);
            long l = 0;
            long p = 1;

            for (int i = 0; i < S.Length; i++)
            {
                if (i < s.Length)
                {
                    l += D[S[i]] * p;
                    p *= 27;
                }
                else
                {
                    l /= 27;
                    l += D[S[i]] * p;
                }
                if (i == s.Length - 1)
                {
                    p /= 27;
                }
                if (search == l)
                {
                    count++;
                }
            }
        }
        Console.WriteLine(count);

    }
}



0