zoukankan      html  css  js  c++  java
  • CF 332A Down the Hatch! 超级水题。。不过题目太长了

    A. Down the Hatch!
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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:

    1. 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);
    2. 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;
    3. 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.

    Input

    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.

    Output

    Print a single integer — the number of glasses of juice Vasya could have drunk if he had played optimally well.

    Sample test(s)
    input
    4
    abbba
    
    output
    1
    
    input
    4
    abbab
    
    output
    0
    
    Note

    In both samples Vasya has got two turns — 1 and 5. In the first sample, Vasya could have drunk a glass of juice during the fifth turn if he had pointed at the next person with a nod. In this case, the sequence of moves would look like "abbbb". In the second sample Vasya wouldn't drink a single glass of juice as the moves performed during turns 3 and 4 are different.


    题目意思 就是改变Vasya的行动,使他能喝更多酒。  就是看他左边3人是不是字母相同。。因为n>=4。。所以什么都不用考虑了。。

    因为Vasya是从0开始的。而且j>=4时才有行动。。所以初始时直接从n开始计数


    因为题目太水了。。我决定贴python代码

    #!/usr/bin/python
    n=input()
    s=raw_input()
    v,t=n,0
    while v < len(s):
    	if s[v-3]==s[v-2]==s[v-1]:t+=1
    	v+=n
    print t


  • 相关阅读:
    [Link]TCPDF组件
    MySql排名查询
    PHPUnit安装
    [Link]使用HAProxy、PHP、Redis和MySQL支撑10亿请求每周架构细节
    同比和环比的计算
    jquery fullPage
    [转]php socket编程通信
    [转]抢先Mark!微信公众平台开发进阶篇资源集锦
    不越狱安装破解软件,iResign重签名方法
    【转】搜狗开源内部项目管理平台Cynthia意欲何为
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3217819.html
Copyright © 2011-2022 走看看