CF1276A.As Simple as One and Two
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a non-empty string s=s1s2…sn , 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≤j≤n−2 ), that sjsj+1sj+2= "one" or sjsj+1sj+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≤t≤104 ) — 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⋅105 . 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⋅106 .
输出格式
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≤r≤∣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".