306947: CF1276A. As Simple as One and Two

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

As Simple as One and Two

题意翻译

给定一个字符串,要求你删除尽量少的字符,使得字符串中不存在一个子串为 ```one``` 或 ```two```。 注意,本题要求**输出删除字符数与方案,并且有多组数据**。 保证所有字符串的长度和 $\le 1.5×10^6$。

题目描述

You are given a non-empty string $ s=s_1s_2\dots s_n $ , which consists only of lowercase Latin letters. Polycarp does not like a string if it contains at least one string "one" or at least one string "two" (or both at the same time) as a substring. In other words, Polycarp does not like the string $ s $ if there is an integer $ j $ ( $ 1 \le j \le n-2 $ ), that $ s_{j}s_{j+1}s_{j+2}= $ "one" or $ s_{j}s_{j+1}s_{j+2}= $ "two". For example: - Polycarp does not like strings "oneee", "ontwow", "twone" and "oneonetwo" (they all have at least one substring "one" or "two"), - Polycarp likes strings "oonnee", "twwwo" and "twnoe" (they have no substrings "one" and "two"). Polycarp wants to select a certain set of indices (positions) and remove all letters on these positions. All removals are made at the same time. For example, if the string looks like $ s= $ "onetwone", then if Polycarp selects two indices $ 3 $ and $ 6 $ , then "onetwone" will be selected and the result is "ontwne". What is the minimum number of indices (positions) that Polycarp needs to select to make the string liked? What should these positions be?

输入输出格式

输入格式


The first line of the input contains an integer $ t $ ( $ 1 \le t \le 10^4 $ ) — the number of test cases in the input. Next, the test cases are given. Each test case consists of one non-empty string $ s $ . Its length does not exceed $ 1.5\cdot10^5 $ . The string $ s $ consists only of lowercase Latin letters. It is guaranteed that the sum of lengths of all lines for all input data in the test does not exceed $ 1.5\cdot10^6 $ .

输出格式


Print an answer for each test case in the input in order of their appearance. The first line of each answer should contain $ r $ ( $ 0 \le r \le |s| $ ) — the required minimum number of positions to be removed, where $ |s| $ is the length of the given line. The second line of each answer should contain $ r $ different integers — the indices themselves for removal in any order. Indices are numbered from left to right from $ 1 $ to the length of the string. If $ r=0 $ , then the second line can be skipped (or you can print empty). If there are several answers, print any of them.

输入输出样例

输入样例 #1

4
onetwone
testme
oneoneone
twotwo

输出样例 #1

2
6 3
0

3
4 1 7 
2
1 4

输入样例 #2

10
onetwonetwooneooonetwooo
two
one
twooooo
ttttwo
ttwwoo
ooone
onnne
oneeeee
oneeeeeeetwooooo

输出样例 #2

6
18 11 12 1 6 21 
1
1 
1
3 
1
2 
1
6 
0

1
4 
0

1
1 
2
1 11 

说明

In the first example, answers are: - "onetwone", - "testme" — Polycarp likes it, there is nothing to remove, - "oneoneone", - "twotwo". In the second example, answers are: - "onetwonetwooneooonetwooo", - "two", - "one", - "twooooo", - "ttttwo", - "ttwwoo" — Polycarp likes it, there is nothing to remove, - "ooone", - "onnne" — Polycarp likes it, there is nothing to remove, - "oneeeee", - "oneeeeeeetwooooo".

Input

题意翻译

给定一个字符串,要求你删除尽量少的字符,使得字符串中不存在一个子串为 ```one``` 或 ```two```。 注意,本题要求**输出删除字符数与方案,并且有多组数据**。 保证所有字符串的长度和 $\le 1.5×10^6$。

加入题单

算法标签: