<<  < 2013 - >  >>
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31




这个题目是hdu4346,是多校第五场比赛的题目。
轻微智商题,题目描述如下:

Description

There is a road from city A to city B.On the road,there are N positions(indexed from 0 to N-1).In order to celebrate the Multi-University training,the mayor of city A commands a worker to insert N flags on the N positions.The color of a flag is either red or green.We call the road is beautiful if and only if there exists at least one pair of non-negative integers (a,b) (0<=a<b<N and (a+b) is an even number) such that both a-th flag and b-th flag are red and (a+b)/2-th flag is green.Otherwise we call the road is ugly.Now,some positions have already been inserted flags.In order to make the road beautiful,the worker must carefully insert the flags on the positions which haven't been inserted.He wants to know how many different types of beautiful road he can make.The type of the road only depends on the flags' color.
 

Input

The first line of the input is the number of cases. On each case there is a line consists of a string.The length of the string is N.(0<=N<=800).The i-th character of the string is 'R' or 'G' or '?'.'R' means the flag on the i-th position which has been inserted is red.'G' means the flag on the i-th position which has been inserted is green.'?' means the i-th position hasn't been inserted a flag.
 

Output

A single line with the number of different types of road the worker can make,modulo 1,000,000,007.
 

Sample Input

4 ?G RG? ??? ????
 

Sample Output

0 1 1 4
 

给你一连串字符,每个字符表示一个位置的状态。?表示还没有插旗子,G表示插了绿色旗子,R表示已经插了红色旗子。
Beautiful Road的定义如果在所有的N个旗子中间存在一组a,b旗子为红色,(a+b)为偶数,(a+b)/2号旗子为绿色,那么这样的路就是Beautiful Road。

题目的解题思路是这样的:先求非Beautiful Road的数量。我们只需要考虑红色的旗子(除了红色就是绿色......),红色旗子的排布规律是:距离最近的两面红旗的间距必须是奇数(为什么呢?假设是偶数,那么一定满足了Beautiful Road的条件呢!因为两红旗中间为绿旗,仔细想想),还有每面红旗的间距必须相等(为什么?仔细想想,和上一问同理)。有了这两个结论我们很容易就想到了一种几乎模拟的方法水过这个题目。
下面上我的代码:(参考自某个神牛)


#i nclude <cstdio>
#i nclude <cstring>
#define ll long long
#define M 1000000007
using namespace std;

ll ans,tot,n,num,num_R,now_r;
char s[888];

ll power(ll a,ll b)
{
    ll total=1;
    while (b)
    {
        if (b&1) total*=a;
        a*=a;
        b>>=1;
        if (total>=M) total%=M;
        if (a>=M) a%=M;
    }
    return total;
}

int main()
{
    int T;
    scanf("%d",&T);
    while (T--)
    {
        memset(s,0,sizeof s);
        scanf("%s",s);
        num=num_R=0;
        for (int i=0; s[i]; i++)
            num+=(s[i]=='?'),num_R+=(s[i]=='R');
        ans=0;
        if (num_R==0) ans++;
        for (int i=0; s[i]; i++)
        {
            if (s[i]=='G') continue;
            if (num_R==0) ans++;
            if (num_R==1 && s[i]=='R') ans++;
            for (int j=1; s[i+j]; j+=2)
            {
                now_r=(s[i]=='R');
                for (int k=i+j; s[k]; k+=j)
                {
                    if (s[k]=='G') break;
                    if (s[k]=='R') now_r++;
                    if (now_r==num_R) ans++;
                }
            }
            if (s[i]=='R') break;
        }
        tot=power(2,num);
        ans=((tot-ans)%M+M)%M;
        printf("%I64d\n",ans);
    }
    return 0;
}

大概就是这样了吧,想不到这几乎是一个模拟题呢,一开始看题毫无思路。智商拙计~~~~~~。
  • 标签:智商题 
  • 发表评论:
    天涯博客欢迎您!