結果

問題 No.430 文字列検索
ユーザー mayoko_mayoko_
提出日時 2016-10-03 00:14:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-11-10 00:06:23
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 AC 197 ms
17,152 KB
testcase_02 AC 285 ms
13,568 KB
testcase_03 AC 210 ms
13,696 KB
testcase_04 AC 74 ms
12,032 KB
testcase_05 AC 77 ms
12,032 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 77 ms
11,904 KB
testcase_08 AC 123 ms
12,288 KB
testcase_09 AC 78 ms
12,160 KB
testcase_10 AC 83 ms
12,416 KB
testcase_11 AC 279 ms
15,488 KB
testcase_12 AC 290 ms
15,744 KB
testcase_13 AC 289 ms
15,744 KB
testcase_14 AC 231 ms
15,104 KB
testcase_15 AC 224 ms
13,952 KB
testcase_16 AC 302 ms
13,952 KB
testcase_17 AC 302 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Trie
    class Node
        def initialize()
            @value = 0
            @child = {}
        end
        attr_accessor :value, :child
    end
    def initialize()
        @root = Node.new
    end
    def insert(str)
        now = @root
        str.each_char do |c|
            if now.child[c] == nil
                now.child[c] = Node.new
            end
            now = now.child[c]
        end
        now.value = now.value+1
    end
    attr_accessor :root
end

S = gets
M = gets.to_i
C = $stdin.read.split(?\n)
trie = Trie.new
for c in C do
    trie.insert(c)
end
N = S.length
ans = 0
for i in 0..N-1 do
    now = trie.root
    for j in 0..10 do
        break if now == nil
        now = now.child[S[i+j]]
        if now != nil
            ans += now.value
        end
    end
end
p ans
0