A. As Simple as One and Two-----思维

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?

Input
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.

Output
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.

Examples
inputCopy

4
onetwone
testme
oneoneone
twotwo
outputCopy
2
6 3
0

3
4 1 7
2
1 4
inputCopy
10
onetwonetwooneooonetwooo
two
one
twooooo
ttttwo
ttwwoo
ooone
onnne
oneeeee
oneeeeeeetwooooo
outputCopy
6
18 11 12 1 6 21
1
1
1
3
1
2
1
6
0

1
4
0

1
1
2
1 11
Note
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”.

题意:给定一个字符串,让你删除一些字符不能出现one和two,请问最少删除几个。
并输出删除的位置
解析:对于单独的two和one 只要删除中间的,因为有可能存在ttttttwoooo,你要删除两边的会比较麻烦,
对于twone这个情况就不能删中间的位置,因为要删两次。我们只要删除公共的地方就行。

#include<bits/stdc++.h>
using namespace std;
const int N=1e6+1000;
int n;
int path[N];
string s;
int main()
{
	cin>>n;
	while(n--)
	{
		cin>>s;
		int m=s.size()-1;
		int j;
		int f=0;
		int sum=0;
		int tot=0;
		memset(path,0,sizeof path);
		for(int i=0;i<=m-2;i++)
		{
			if((s[i]=='t'&&s[i+1]=='w'&&s[i+2]=='o'&&s[i+3]=='n'&&s[i+4]=='e'))
			{
				f=1;
				s[i+2]='%';
				path[++tot]=i+2;
			}
			else if((s[i]=='t'&&s[i+1]=='w'&&s[i+2]=='o')||(s[i]=='o'&&s[i+1]=='n'&&s[i+2]=='e'))
			{
				f=1;
					s[i+1]='%';
					path[++tot]=i+1;
			}
		}
		if(f==0)
		{
			cout<<0<<endl<<endl;		
		}
		else
		{
			cout<<tot<<endl;
			for(int i=1;i<=tot;i++) cout<<path[i]+1<<" ";
			cout<<endl;
		}
	}
 } 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值