[Google APAC 2017] Lazy Spelling Bee

15 篇文章 0 订阅

Problem

In the Lazy Spelling Bee, a contestant is given a target word W to spell. The contestant's answer word A is acceptable if it is the same length as the target word, and the i-th letter of A is either the i-th, (i-1)th, or (i+1)th letter of W, for all i in the range of the length of A. (The first letter of A must match either the first or second letter of W, since the 0th letter of W doesn't exist. Similarly, the last letter of A must match either the last or next-to-last letter of W.) Note that the target word itself is always an acceptable answer word.

You are preparing a Lazy Spelling Bee, and you have been asked to determine, for each target word, how many distinct acceptable answer words there are. Since this number may be very large, please output it modulo 1000000007 (109 + 7).

Input

The first line of the input gives the number of test cases, TT test cases follow; each consists of one line with a string consisting only of lowercase English letters (a throughz).

Output

For each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1) and y is the number of distinct acceptable answer words, modulo 109 + 7.

Limits

1 ≤ T ≤ 100.

Small dataset

1 ≤ length of each string ≤ 5.

Large dataset

1 ≤ length of each string ≤ 1000.

Sample


Input 
 

Output 
 
4
ag
aa
abcde
x

Case #1: 4
Case #2: 1
Case #3: 108
Case #4: 1

In sample case #1, the acceptable answer words are aaagga, and gg.

In sample case #2, the only acceptable answer word is aa.


题解:多个数相乘取余。(a*b)%c==(a%c)*(b%c)。 大数据要用Long long


#include <bits/stdc++.h>
using namespace std;
int main() {
    freopen("A-large-practice.in", "r", stdin);
    freopen("A-large.out", "w", stdout);
    int t;
    scanf("%d",&t);

    string s;
    for(int cnt=1;cnt<=t;cnt++) {
         cin>>s;
         int len=s.size();
         long long res=1;
         for(int i=0;i<len;i++) {
            int tmp=1;
            if(i>0&&s[i]!=s[i-1]) tmp++;
            if(i+1<len&&s[i]!=s[i+1]&&s[i+1]!=s[i-1]) tmp++;
            res=(res*tmp);
            res%=1000000007;
         }
         printf("Case #%d: %lld\n",cnt,res%1000000007);
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值