結果

問題 No.430 文字列検索
ユーザー magurogumamaguroguma
提出日時 2020-09-06 16:34:44
言語 Go
(1.22.1)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 7,667 bytes
コンパイル時間 11,598 ms
コンパイル使用メモリ 209,380 KB
実行使用メモリ 5,808 KB
最終ジャッジ日時 2023-08-19 14:03:14
合計ジャッジ時間 12,772 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,500 KB
testcase_01 AC 20 ms
5,608 KB
testcase_02 AC 19 ms
5,740 KB
testcase_03 AC 19 ms
5,744 KB
testcase_04 AC 4 ms
5,496 KB
testcase_05 AC 3 ms
5,496 KB
testcase_06 AC 4 ms
5,496 KB
testcase_07 AC 4 ms
5,500 KB
testcase_08 AC 16 ms
5,504 KB
testcase_09 AC 4 ms
5,500 KB
testcase_10 AC 5 ms
5,500 KB
testcase_11 AC 20 ms
5,752 KB
testcase_12 AC 20 ms
5,808 KB
testcase_13 AC 20 ms
5,740 KB
testcase_14 AC 20 ms
5,740 KB
testcase_15 AC 20 ms
5,744 KB
testcase_16 AC 19 ms
5,744 KB
testcase_17 AC 19 ms
5,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
URL:
https://yukicoder.me/problems/no/430
*/

package main

import (
	"bufio"
	"fmt"
	"io"
	"math"
	"math/rand"
	"os"
	"strconv"
	"time"
)

var (
	S string
	m int
	C []string

	sh *RHash
)

func main() {
	defer stdout.Flush()

	S = reads()
	m = readi()
	for i := 0; i < m; i++ {
		C = append(C, reads())
	}

	memo := make(map[uint64]int)

	sh = NewRHash(S)
	for i := 0; i < m; i++ {
		th := NewRHash(C[i])
		hv := th.SliceHash(0, th.Len())
		memo[hv]++
	}

	ans := 0
	for i := 0; i < len(S); i++ {
		for j := 1; j <= 10; j++ {
			if i+j > len(S) {
				break
			}
			hv := sh.SliceHash(i, i+j)
			ans += memo[hv]
		}
	}
	fmt.Println(ans)
}

// rolling hash (by keymoon@atcoder)
// originated from: https://qiita.com/keymoon/items/11fac5627672a6d6a9f6
// reference: https://atcoder.jp/contests/abc141/submissions/7717102

// NewRHash returns rolling hashs of the string.
func NewRHash(s string) *RHash {
	if !_isInitialized {
		initRHashConfing()
		_isInitialized = true
	}

	rh := new(RHash)

	rh.hash = make([]uint64, len(s)+1)
	for i := 0; i < len(s); i++ {
		rh.hash[i+1] = rhCalcMod(rhMul(rh.hash[i], _rhBase) + uint64(s[i]))
	}

	return rh
}

// SliceHash returns a rolling hash of a slice of the string.
// The slice is expressed like [l, r).
// This function can be used like Golang slice(S[l:r]).
func (rh *RHash) SliceHash(l, r int) uint64 {
	begin, length := l, r-l
	return rhCalcMod(
		rh.hash[begin+length] + _RH_POSITIVIZER - rhMul(rh.hash[begin], _rhPowMemo[length]),
	)
}

// OffsetHash returns a rolling hash of a slice of the string.
// The slice is expressed like [begin, begin+length).
func (rh *RHash) OffsetHash(begin, length int) uint64 {
	return rhCalcMod(
		rh.hash[begin+length] + _RH_POSITIVIZER - rhMul(rh.hash[begin], _rhPowMemo[length]),
	)
}

// Len returns a length of an original string.
func (rh *RHash) Len() int {
	return len(rh.hash) - 1
}

type RHash struct {
	hash []uint64
}

const (
	_RH_MASK30       uint64 = (1 << 30) - 1
	_RH_MASK31       uint64 = (1 << 31) - 1
	_RH_MOD          uint64 = (1 << 61) - 1
	_RH_POSITIVIZER  uint64 = _RH_MOD * ((1 << 3) - 1)
	_RH_MAX_S_LENGTH        = 200000 + 50
)

var (
	_rhBase        uint64
	_rhPowMemo     []uint64
	_isInitialized = false
)

func initRHashConfing() {
	rand.Seed(time.Now().UnixNano())

	_rhBase = uint64(rand.Int31n(math.MaxInt32-129)) + uint64(129)
	_rhPowMemo = make([]uint64, _RH_MAX_S_LENGTH)
	_rhPowMemo[0] = 1
	for i := 1; i < len(_rhPowMemo); i++ {
		_rhPowMemo[i] = rhCalcMod(rhMul(_rhPowMemo[i-1], _rhBase))
	}
}

func rhMul(l, r uint64) uint64 {
	var lu uint64 = l >> 31
	var ld uint64 = l & _RH_MASK31
	var ru uint64 = r >> 31
	var rd uint64 = r & _RH_MASK31
	var middleBit uint64 = ld*ru + lu*rd

	return ((lu * ru) << 1) + ld*rd + ((middleBit & _RH_MASK30) << 31) + (middleBit >> 30)
}

func rhCalcMod(val uint64) uint64 {
	val = (val & _RH_MOD) + (val >> 61)
	if val > _RH_MOD {
		val -= _RH_MOD
	}
	return val
}

/*******************************************************************/

/********** common constants **********/

const (
	// General purpose
	MOD = 1000000000 + 7
	// MOD          = 998244353
	ALPH_N  = 26
	INF_I64 = math.MaxInt64
	INF_B60 = 1 << 60
	INF_I32 = math.MaxInt32
	INF_B30 = 1 << 30
	NIL     = -1

	// for dijkstra, prim, and so on
	WHITE = 0
	GRAY  = 1
	BLACK = 2
)

// modi can calculate a right residual whether value is positive or negative.
func modi(val, m int) int {
	res := val % m
	if res < 0 {
		res += m
	}
	return res
}

// modll can calculate a right residual whether value is positive or negative.
func modll(val, m int64) int64 {
	res := val % m
	if res < 0 {
		res += m
	}
	return res
}

/********** bufio setting **********/

func init() {
	// bufio.ScanWords <---> bufio.ScanLines
	reads = newReadString(os.Stdin, bufio.ScanWords)
	stdout = bufio.NewWriter(os.Stdout)
}

/********** FAU standard libraries **********/

//fmt.Sprintf("%b\n", 255) 	// binary expression

/********** I/O usage **********/

//str := reads()
//i := readi()
//X := readis(n)
//S := readrs()
//a := readf()
//A := readfs(n)

//str := ZeroPaddingRuneSlice(num, 32)
//str := PrintIntsLine(X...)

/*********** Input ***********/

var (
	// reads returns a WORD string.
	reads  func() string
	stdout *bufio.Writer
)

func newReadString(ior io.Reader, sf bufio.SplitFunc) func() string {
	r := bufio.NewScanner(ior)
	r.Buffer(make([]byte, 1024), int(1e+9)) // for Codeforces
	r.Split(sf)

	return func() string {
		if !r.Scan() {
			panic("Scan failed")
		}
		return r.Text()
	}
}

// readi returns an integer.
func readi() int {
	return int(_readInt64())
}
func readi2() (int, int) {
	return int(_readInt64()), int(_readInt64())
}
func readi3() (int, int, int) {
	return int(_readInt64()), int(_readInt64()), int(_readInt64())
}
func readi4() (int, int, int, int) {
	return int(_readInt64()), int(_readInt64()), int(_readInt64()), int(_readInt64())
}

// readll returns as integer as int64.
func readll() int64 {
	return _readInt64()
}
func readll2() (int64, int64) {
	return _readInt64(), _readInt64()
}
func readll3() (int64, int64, int64) {
	return _readInt64(), _readInt64(), _readInt64()
}
func readll4() (int64, int64, int64, int64) {
	return _readInt64(), _readInt64(), _readInt64(), _readInt64()
}

func _readInt64() int64 {
	i, err := strconv.ParseInt(reads(), 0, 64)
	if err != nil {
		panic(err.Error())
	}
	return i
}

// readis returns an integer slice that has n integers.
func readis(n int) []int {
	b := make([]int, n)
	for i := 0; i < n; i++ {
		b[i] = readi()
	}
	return b
}

// readlls returns as int64 slice that has n integers.
func readlls(n int) []int64 {
	b := make([]int64, n)
	for i := 0; i < n; i++ {
		b[i] = readll()
	}
	return b
}

// readf returns an float64.
func readf() float64 {
	return float64(_readFloat64())
}

func _readFloat64() float64 {
	f, err := strconv.ParseFloat(reads(), 64)
	if err != nil {
		panic(err.Error())
	}
	return f
}

// ReadFloatSlice returns an float64 slice that has n float64.
func readfs(n int) []float64 {
	b := make([]float64, n)
	for i := 0; i < n; i++ {
		b[i] = readf()
	}
	return b
}

// readrs returns a rune slice.
func readrs() []rune {
	return []rune(reads())
}

/*********** Output ***********/

// PrintIntsLine returns integers string delimited by a space.
func PrintIntsLine(A ...int) string {
	res := []rune{}

	for i := 0; i < len(A); i++ {
		str := strconv.Itoa(A[i])
		res = append(res, []rune(str)...)

		if i != len(A)-1 {
			res = append(res, ' ')
		}
	}

	return string(res)
}

// PrintIntsLine returns integers string delimited by a space.
func PrintInts64Line(A ...int64) string {
	res := []rune{}

	for i := 0; i < len(A); i++ {
		str := strconv.FormatInt(A[i], 10) // 64bit int version
		res = append(res, []rune(str)...)

		if i != len(A)-1 {
			res = append(res, ' ')
		}
	}

	return string(res)
}

// Printf is function for output strings to buffered os.Stdout.
// You may have to call stdout.Flush() finally.
func printf(format string, a ...interface{}) {
	fmt.Fprintf(stdout, format, a...)
}

/*********** Debugging ***********/

// debugf is wrapper of fmt.Fprintf(os.Stderr, format, a...)
func debugf(format string, a ...interface{}) {
	fmt.Fprintf(os.Stderr, format, a...)
}

// ZeroPaddingRuneSlice returns binary expressions of integer n with zero padding.
// For debugging use.
func ZeroPaddingRuneSlice(n, digitsNum int) []rune {
	sn := fmt.Sprintf("%b", n)

	residualLength := digitsNum - len(sn)
	if residualLength <= 0 {
		return []rune(sn)
	}

	zeros := make([]rune, residualLength)
	for i := 0; i < len(zeros); i++ {
		zeros[i] = '0'
	}

	res := []rune{}
	res = append(res, zeros...)
	res = append(res, []rune(sn)...)

	return res
}
0