码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4639 Hehe(字符串处理,斐波纳契数列,找规律)

时间:2014-08-15 22:25:09      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   ar   

题目

 

 

//每次for循环的时候总是会忘记最后一段,真是白痴。。。。

 

bubuko.com,布布扣
//连续的he的个数  种数
//0                    1
//1                    1
//2                    2
//3                    3
//4                    5
//5                    8
//……                    ……
//斐波纳契数列

//不连续的就用相乘(组合数)好了

#include<iostream>
#include<algorithm>
#include<string>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
#define ll __int64

//貌似刚刚数组开小了
int fi[6000];
void fiinit()
{
    fi[0]=1;
    fi[1]=1;
    for(int i=2;i<6000;i++)
    {
        fi[i]=(fi[i-1]+fi[i-2])%10007;
    }
}

int main(){
    fiinit();
    int n;
    scanf("%d",&n);
    for(int id=1;id<=n;id++)
    {
        char s[10100];
        scanf("%s",s);
        int len=strlen(s);
        int he=0;
        int ans=1;
        for(int i=0;i<len;)
        {
            if(s[i]==h&&s[i+1]==e)
            {
                he++;
                i=i+2;
            }
            else 
            {
                if(he>1)
                    ans=(ans*fi[he])%10007;
                i++;
                he=0;
            }
        }
        //如果最后那个是he结尾,就要加上最后一段:
        if(he>1)
            ans=(ans*fi[he])%10007;

        printf("Case %d: %d\n",id,ans);
    }
    return 0;
}
View Code

 

HDU 4639 Hehe(字符串处理,斐波纳契数列,找规律),布布扣,bubuko.com

HDU 4639 Hehe(字符串处理,斐波纳契数列,找规律)

标签:style   blog   http   color   os   io   for   ar   

原文地址:http://www.cnblogs.com/laiba2004/p/3915705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!