結果
問題 | No.430 文字列検索 |
ユーザー | むらため |
提出日時 | 2019-10-01 12:05:53 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 98 ms / 2,000 ms |
コード長 | 2,479 bytes |
コンパイル時間 | 3,127 ms |
コンパイル使用メモリ | 63,120 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-10 00:35:17 |
合計ジャッジ時間 | 4,356 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 54 ms
5,248 KB |
testcase_02 | AC | 58 ms
5,248 KB |
testcase_03 | AC | 67 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 44 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | AC | 73 ms
5,248 KB |
testcase_12 | AC | 74 ms
5,248 KB |
testcase_13 | AC | 72 ms
5,248 KB |
testcase_14 | AC | 72 ms
5,248 KB |
testcase_15 | AC | 75 ms
5,248 KB |
testcase_16 | AC | 95 ms
5,248 KB |
testcase_17 | AC | 98 ms
5,248 KB |
ソースコード
import sequtils,algorithm template times*(n:int,body) = (for _ in 0..<n: body) template `max=`*(x,y) = x = max(x,y) template `min=`*(x,y) = x = min(x,y) proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" ,discardable.} proc scan(): int = while true: let k = getchar_unlocked() if k < '0': return result = 10 * result + k.ord - '0'.ord type SuffixArray = ref object S : string n : int SA : seq[int] LCP : seq[int] proc newSuffixArray(S:string):SuffixArray = new(result) result.S = S let n = S.len result.n = n # SA var G = newSeq[int](n+1) for i in 0..<n: G[i] = S[i].int G[n] = -1 proc SAComp(h:int):proc(x,y:int):int = return proc(x,y:int):int = if x == y : return 0 if G[x] == G[y] : return G[x+h] - G[y+h] return G[x] - G[y] # ここのソートに N*logN*logN かかる result.SA = toSeq(0..n) result.SA.sort(0.SAComp) var B = newSeq[int](n+1) var h = 1 while B[n] != n: let comp = h.SAComp result.SA.sort(comp) for i in 0..<n: B[i+1] = B[i] + (if comp(result.SA[i],result.SA[i+1]) < 0 : 1 else: 0) for i in 0..n: G[result.SA[i]] = B[i] h *= 2 # LCP (最長共通接頭辞) # SA格納順に隣同士の最長共通接頭辞の長さ # kasai's algorithm で O(N) にできる result.LCP = newSeq[int](n+1) h = 0 for i in 0..n: B[result.SA[i]] = i for i in 0..n: if B[i] > 0 : var j = result.SA[B[i]-1] while j + h < n and i + h < n and S[j+h] == S[i+h]: h += 1 result.LCP[B[i]] = h if h > 0 : h -= 1 result.LCP[0] = -1 iterator find(self:SuffixArray,target:string): int = var a = -1 var b = self.n + 1 while a + 1 < b: let m = (a + b) shr 1 let start = self.SA[m] if cmp(self.S[start..<self.S.len.min(start+target.len)],target) < 0 : a = m else : b = m var already = false while b <= self.n : let start = self.SA[b] if already: # 既にマッチしているので更にもっとマッチするかどうか見るだけで良い if self.LCP[b] >= target.len: yield start else: break elif cmp(self.S[start..<self.S.len.min(start+target.len)],target) == 0 : yield start already = true else: break b += 1 proc getCount(self:SuffixArray,target:string): int = for _ in self.find(target): result += 1 let S = stdin.readLine() let SA = S.newSuffixArray() var ans = 0 scan().times: let T = stdin.readLine() ans += SA.getCount(T) echo ans