当前位置: 首页 > news >正文

As Simple as One and Two

E. As Simple as One and Two

You are given a non-empty string s = s 1 s 2 … s n s=s_1s_2\dots s_n s=s1s2sn, 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 s s if there is an integer j j j ( 1 ≤ j ≤ n − 2 1 \le j \le n-2 1jn2), that s j s j + 1 s j + 2 = s_{j}s_{j+1}s_{j+2}= sjsj+1sj+2=“one” or s j s j + 1 s j + 2 = s_{j}s_{j+1}s_{j+2}= 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 = s= s=“onetwone”, then if Polycarp selects two indices 3 3 3 and 6 6 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 t t ( 1 ≤ t ≤ 1 0 4 1 \le t \le 10^4 1t104) — the number of test cases in the input. Next, the test cases are given.

Each test case consists of one non-empty string s s s. Its length does not exceed 1.5 ⋅ 1 0 5 1.5\cdot10^5 1.5105. The string s s 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 ⋅ 1 0 6 1.5\cdot10^6 1.5106.

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 r r ( 0 ≤ r ≤ ∣ s ∣ 0 \le r \le |s| 0rs) — the required minimum number of positions to be removed, where ∣ s ∣ |s| s is the length of the given line. The second line of each answer should contain r r r different integers — the indices themselves for removal in any order. Indices are numbered from left to right from 1 1 1 to the length of the string. If r = 0 r=0 r=0, then the second line can be skipped (or you can print empty). If there are several answers, print any of them.

Example

Input

4
onetwone
testme
oneoneone
twotwo

Output

2
6 3
03
4 1 7 
2
1 4

Input

10
onetwonetwooneooonetwooo
two
one
twooooo
ttttwo
ttwwoo
ooone
onnne
oneeeee
oneeeeeeetwooooo

Output

6
18 11 12 1 6 21 
1
1 
1
3 
1
2 
1
6 
01
4 
01
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:

  • onetwonetwo****oneooonetwooo”,
  • 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”.

code

#include<bits/stdc++.h>
#define int long long
#define endl '\n'using namespace std;const int N = 2e5+10,INF=0x3f3f3f3f,mod=1e9+7;typedef pair<int,int> PII;int T=1;void solve(){string s;cin >> s;int n=s.length();vector<int> r;for(int i=0;i<n-2;i++){if(i<n-4) if(s.substr(i,5)=="twone") r.push_back(i+2),s[i+2]='9';if(s.substr(i,3)=="one" || s.substr(i,3)=="two") r.push_back(i+1);}cout<<r.size()<<"\n";for(auto x:r)cout<<x+1<<" ";cout<<"\n";
}signed main(){cin>>T; while(T--){solve();}return 0;
}

http://www.mrgr.cn/news/64578.html

相关文章:

  • 西门子编程软件报错“Step 7 basic”找不到许可证问题
  • 基于 Spring Boot 和 Vue 的门票销售创新系统
  • debian10 arm64 修改国内软件源
  • 配置管理之Consul
  • 基于Multisim数控直流稳压电源电路(含仿真和报告)
  • vue系列==vue路由
  • 算法学习(七)—— 分治
  • 棉花病害识别检测数据集(猫脸码客 第232期)
  • WorkFlow源码剖析——Communicator之TCPServer(上)
  • 深潜C语言的星辰大海:剖析那些鲜见却至关重要的关键字及其在实战中的运用
  • 2024年【危险化学品生产单位安全生产管理人员】最新解析及危险化学品生产单位安全生产管理人员找解析
  • 深入探索PostGIS
  • 有问必答: EMC Unity 存储系统root drive空间告警提醒
  • Rust常用属性及应用
  • Air780EP之RC522开发板,你了解吗?
  • C#/.NET/.NET Core拾遗补漏合集(24年10月更新)
  • 2024运维学习路线图
  • python-14-函数详解(定义、参数、返回值、高级函数、偏函数、装饰器)
  • 【JAVA毕业设计】基于Vue和SpringBoot的甘肃非物质文化网站
  • java项目之微服务在线教育系统设计与实现(springcloud)
  • 服务器虚拟化:构建高效弹性IT环境的基础
  • MYSQL学习笔记
  • 在Docker中安装和配置Nginx
  • 【算法-选择排序】挑挑拣拣,排出顺序——选择排序入门
  • 教育数据知识图谱创建
  • 适用于 c++ 的 wxWidgets框架源码编译SDK-windows篇