結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-12-16 17:29:09
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 3,201 bytes
コンパイル時間 12,099 ms
コンパイル使用メモリ 232,820 KB
実行使用メモリ 67,696 KB
最終ジャッジ日時 2024-09-27 07:45:43
合計ジャッジ時間 35,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 219 ms
15,328 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 159 ms
12,288 KB
testcase_06 AC 243 ms
15,720 KB
testcase_07 AC 282 ms
11,564 KB
testcase_08 AC 53 ms
6,948 KB
testcase_09 WA -
testcase_10 AC 101 ms
9,888 KB
testcase_11 AC 98 ms
7,960 KB
testcase_12 AC 180 ms
12,732 KB
testcase_13 AC 319 ms
18,792 KB
testcase_14 AC 187 ms
14,288 KB
testcase_15 AC 272 ms
17,160 KB
testcase_16 WA -
testcase_17 AC 186 ms
9,644 KB
testcase_18 AC 308 ms
15,264 KB
testcase_19 AC 136 ms
11,784 KB
testcase_20 WA -
testcase_21 AC 103 ms
11,860 KB
testcase_22 WA -
testcase_23 AC 411 ms
22,380 KB
testcase_24 AC 415 ms
20,812 KB
testcase_25 WA -
testcase_26 AC 401 ms
22,516 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 410 ms
22,968 KB
testcase_30 WA -
testcase_31 AC 401 ms
20,580 KB
testcase_32 AC 413 ms
22,428 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 403 ms
22,928 KB
testcase_42 AC 377 ms
20,692 KB
testcase_43 AC 372 ms
18,556 KB
testcase_44 AC 380 ms
20,220 KB
testcase_45 AC 370 ms
18,556 KB
testcase_46 AC 371 ms
20,412 KB
testcase_47 AC 316 ms
14,264 KB
testcase_48 AC 317 ms
17,176 KB
testcase_49 AC 313 ms
14,048 KB
testcase_50 AC 315 ms
13,704 KB
testcase_51 AC 319 ms
14,488 KB
testcase_52 AC 255 ms
59,488 KB
testcase_53 AC 254 ms
51,220 KB
testcase_54 AC 259 ms
67,696 KB
testcase_55 AC 253 ms
8,388 KB
testcase_56 AC 245 ms
8,360 KB
testcase_57 AC 244 ms
8,384 KB
testcase_58 WA -
testcase_59 AC 407 ms
22,660 KB
testcase_60 AC 92 ms
10,140 KB
testcase_61 AC 245 ms
8,388 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 329 ms
15,596 KB
testcase_68 WA -
testcase_69 AC 332 ms
16,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
)

// 顺序遍历每个单词,问之前是否见过类似的单词.
//
//	`类似`: 最多交换一次相邻字符,可以得到相同的单词.
//	n<=2e5 sum(len(s))<=1e6
func ConditionalReflection(words []string) []bool {

	R := NewRollingHash(13331, 2102001800968)
	res := make([]bool, len(words))
	visited := make(map[uint]struct{})

	for i := 0; i < len(words); i++ {
		m := len(words[i])
		word := words[i]
		table := R.Build(word)
		hashes := []uint{R.Query(table, 0, m)} // 不交换
		for j := 0; j < m-1; j++ {             // 交换
			newWord := string(word[j+1]) + string(word[j])
			mid := R.Query(R.Build(newWord), 0, 2)
			left := R.Query(table, 0, j)
			right := R.Query(table, j+2, m)
			left = R.Combine(left, mid, 2)
			left = R.Combine(left, right, m-j-2)
			hashes = append(hashes, left)
		}

		for _, h := range hashes {
			if _, ok := visited[h]; ok {
				res[i] = true
				break
			}
		}

		visited[hashes[0]] = struct{}{}
	}

	return res
}

func main() {
	// https://yukicoder.me/problems/no/2102
	in := bufio.NewReader(os.Stdin)
	out := bufio.NewWriter(os.Stdout)
	defer out.Flush()

	var n int
	fmt.Fscan(in, &n)
	words := make([]string, n)
	for i := 0; i < n; i++ {
		fmt.Fscan(in, &words[i])
	}

	res := ConditionalReflection(words)
	for i := 0; i < n; i++ {
		if res[i] {
			fmt.Fprintln(out, "Yes")
		} else {
			fmt.Fprintln(out, "No")
		}
	}
}

type S = string

func GetHash(s S, base uint, mod uint) uint {
	if len(s) == 0 {
		return 0
	}
	res := uint(0)
	for i := 0; i < len(s); i++ {
		res = (res*base + uint(s[i])) % mod
	}
	return res
}

type RollingHash struct {
	base  uint
	mod   uint
	power []uint
}

// 131/13331/1713302033171(回文素数)
func NewRollingHash(base uint, mod uint) *RollingHash {
	return &RollingHash{
		base:  base,
		mod:   mod,
		power: []uint{1},
	}
}

func (r *RollingHash) Build(s S) (hashTable []uint) {
	sz := len(s)
	hashTable = make([]uint, sz+1)
	for i := 0; i < sz; i++ {
		hashTable[i+1] = (hashTable[i]*r.base + uint(s[i])) % r.mod
	}
	return hashTable
}

func (r *RollingHash) Query(sTable []uint, start, end int) uint {
	r.expand(end - start)
	return (r.mod + sTable[end] - sTable[start]*r.power[end-start]%r.mod) % r.mod
}

func (r *RollingHash) Combine(h1, h2 uint, h2len int) uint {
	r.expand(h2len)
	return (h1*r.power[h2len] + h2) % r.mod
}

func (r *RollingHash) AddChar(hash uint, c byte) uint {
	return (hash*r.base + uint(c)) % r.mod
}

// 两个字符串的最长公共前缀长度.
func (r *RollingHash) LCP(sTable []uint, start1, end1 int, tTable []uint, start2, end2 int) int {
	len1 := end1 - start1
	len2 := end2 - start2
	len := min(len1, len2)
	low := 0
	high := len + 1
	for high-low > 1 {
		mid := (low + high) / 2
		if r.Query(sTable, start1, start1+mid) == r.Query(tTable, start2, start2+mid) {
			low = mid
		} else {
			high = mid
		}
	}
	return low
}

func (r *RollingHash) expand(sz int) {
	if len(r.power) < sz+1 {
		preSz := len(r.power)
		r.power = append(r.power, make([]uint, sz+1-preSz)...)
		for i := preSz - 1; i < sz; i++ {
			r.power[i+1] = (r.power[i] * r.base) % r.mod
		}
	}
}

func min(a, b int) int {
	if a < b {
		return a
	}
	return b
}
0