Everybody knows that the Berland citizens are keen on health, especially students. Berland students are so tough that all they drink is orange juice!
Yesterday one student, Vasya and his mates made some barbecue and they drank this healthy drink only. After they ran out of the first barrel of juice, they decided to play a simple game. All n people who came to the barbecue sat in a circle (thus each person received a unique index bi from 0 to n - 1). The person number 0 started the game (this time it was Vasya). All turns in the game were numbered by integers starting from 1. If the j-th turn was made by the person with index bi, then this person acted like that:
- he pointed at the person with index (bi + 1) mod n either with an elbow or with a nod (x mod y is the remainder after dividing x byy);
- if j ≥ 4 and the players who had turns number j - 1, j - 2, j - 3, made during their turns the same moves as player bi on the current turn, then he had drunk a glass of juice;
- the turn went to person number (bi + 1) mod n.
The person who was pointed on the last turn did not make any actions.
The problem was, Vasya's drunk too much juice and can't remember the goal of the game. However, Vasya's got the recorded sequence of all the participants' actions (including himself). Now Vasya wants to find out the maximum amount of juice he could drink if he played optimally well (the other players' actions do not change). Help him.
You can assume that in any scenario, there is enough juice for everybody.
The first line contains a single integer n (4 ≤ n ≤ 2000) — the number of participants in the game. The second line describes the actual game: the i-th character of this line equals 'a', if the participant who moved i-th pointed at the next person with his elbow, and 'b', if the participant pointed with a nod. The game continued for at least 1 and at most 2000 turns.
Print a single integer — the number of glasses of juice Vasya could have drunk if he had played optimally well.
4 abbba
1
4 abbab
0
真心表示英语是个渣渣,又没看懂题意,在小健健大神的帮助下,最后算是弄清了,就是玩游戏 ,第一个人是起始点,每次回到他自己的时候,看他前面的3个人的动作是不是一样的,如果一样的话,就和一杯饮料,算总共要喝几杯。
下面是代码:
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; char str[2005]; int main(){ int n; while(scanf("%d",&n)!=EOF){ cin>>str; int ans=0; int l=strlen(str); for(int i=0;i<l;i++){ if(i%n!=0&&i!=0) continue; if(i<4) continue; if(str[i-1]==str[i-2]&&str[i-2]==str[i-3]&&str[i-1]==str[i-3]) ans++; } cout<<ans<<endl; } return 0; }