結果

問題 No.430 文字列検索
ユーザー mbanmban
提出日時 2017-02-15 23:44:10
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,695 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 106,584 KB
実行使用メモリ 27,060 KB
最終ジャッジ日時 2023-08-28 17:36:27
合計ジャッジ時間 5,588 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
27,060 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 Magatro
{
    private string S;
    private int M;
    private string[] C;
    const int AlphabetNum = 26;

    private void Scan()
    {
        S = Console.ReadLine();
        M = int.Parse(Console.ReadLine());
        C = new string[M];
        for (int i = 0; i < M; i++)
        {
            C[i] = Console.ReadLine();
        }
    }

    public void Solve()
    {
        Scan();
        int anser = 0;
        foreach (string s in C)
        {
            anser += Count(s);
        }
        Console.WriteLine(anser);
    }

    private int Count(string s)
    {
        long search = 0;
        search = ToLong(s);
        long hash = 0;
        long digi = 1;
        for (int i = 0; i < s.Length - 1; i++)
        {
            hash += Map(S[i]) * digi;
            digi *= AlphabetNum;
        }

        int result = 0;

        for (int i = s.Length - 1; i < S.Length; i++)
        {
            hash += Map(S[i]) * digi;
            if (hash == search) result++;
            hash /= AlphabetNum;
        }

        return result;
    }

    private long ToLong(string s)
    {
        long result = 0;
        long digi = 1;
        for (int i = 0; i < s.Length; i++)
        {
            result += Map(s[i]) * digi;
            digi *= AlphabetNum;
        }
        return result;
    }

    private int Map(char c)
    {
        return c - 65;
    }
}




0