1996: [USACO 2023 US Open Contest Bronze] Problem 1. FEB
题目描述
Bessie and Elsie are plotting to overthrow Farmer John at last! They plan it out over () text messages. Their conversation can be represented by a string of length where is either or , meaning the th message was sent by Bessie or Elsie, respectively.
However, Farmer John hears of the plan and attempts to intercept their conversation. Thus, some letters of are , meaning Farmer John obfuscated the message and the sender is unknown.
The excitement level of a non-obfuscated conversation is the number of times a cow double-sends - that is, the number of occurrences of substring or in . You want to find the excitement level of the original message, but you don’t know which of Farmer John’s messages were actually Bessie’s / Elsie’s. Over all possibilities, output all possible excitement levels of .
输入
The next line contains .
输出
样例输入
4
BEEF
样例输出
2
1
2
提示
SAMPLE INPUT:
9
FEBFEBFEB
SAMPLE OUTPUT:
2
2
3
SAMPLE INPUT:
10
BFFFFFEBFE
SAMPLE OUTPUT:
3
2
4
6
SCORING:
- Inputs 4-8:
- Inputs 9-20: No additional constraints.