程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU 4814 Golden Radio Base

HDU 4814 Golden Radio Base

編輯:C++入門知識

HDU 4814 Golden Radio Base


很顯然是個進制轉換的題,根據題意有a^2 = a + 1 -> a^n = a^(n-1) + a^(n-2),這樣就能消除兩個連續1。

另,a^3 = a^2 + 1 = 2*a+2 = 2*(a+1) = 2*a。這樣就可以將悉數轉化為01。

10^9大約是2^30,所以總長度不超高150,直接模擬就好了。

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#pragma comment(linker, "/STACK:1024000000");
#define EPS (1e-6)
#define LL long long
#define ULL unsigned long long
#define _LL __int64
#define INF 0x3f3f3f3f
#define Mod 1000000007
#define Seed 31

using namespace std;

ULL hash[100010];
ULL K;

char s[100010];

map ma;

int main()
{
    int n,m,l,i,j;

    while(scanf("%d %d",&m,&l) != EOF)
    {
        scanf("%s",s);

        for(n = strlen(s), i = n-1 ,hash[n] = 0;i >= 0; --i)
            hash[i] = hash[i+1]*Seed + (s[i]-'a'+1);
        for(K = Seed,i = 2;i <= l; ++i)
            K *= Seed;
//        for(i = 0;i < n-l; ++i)
//            printf("i = %d hash = %I64u\n",i,hash[i]-hash[i+l]*K[l]);
        ULL tmp;
        int anw = 0;
        for(i = 0;i < l && m*l+i < n; ++i)
        {
            ma.clear();

            for(j = i;j < m*l+i;j += l)
                ma[hash[j] - hash[j+l]*K]++;

            if(ma.size() == m)
                anw++;

            for(j = m*l+i;j+l <= n; j += l)
            {
                ma[hash[j-m*l]-hash[j-m*l+l]*K]--;
                if(ma[hash[j-m*l]-hash[j-m*l+l]*K] == 0)
                    ma.erase(hash[j-m*l]-hash[j-m*l+l]*K);

                ma[hash[j] - hash[j+l]*K]++;

                if(ma.size() == m)
                    anw++;
            }
        }
        printf("%d\n",anw);
    }

    return 0;
}























  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved