程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVa 129 Krypton Factor困難的串 (dfs 遞歸搜索),kryptondfs

UVa 129 Krypton Factor困難的串 (dfs 遞歸搜索),kryptondfs

編輯:C++入門知識

UVa 129 Krypton Factor困難的串 (dfs 遞歸搜索),kryptondfs


 

回溯法,只需要判斷當前串的後綴,而不是所有的子串

#include<iostream>
#include<cstdio>
using namespace std;
int s[1000];
int n,l,cnt;
int bfs(int cur)
{
    if(cnt++==n)
    {
        for(int i=0; i<cur; i++)
            printf("%c",'A'+s[i]);
        cout<<endl;
        return 0;
    }
    for(int i=0; i<l; i++)
    {
        s[cur]=i;
        int ok=1;
        for(int j=1; j*2<=cur+1; j++)
        {
            int equal=1;
            for(int k=0; k<j; k++)
                if(s[cur-k]!=s[cur-k-j])
                {
                    equal=0;
                    break;
                }
            if(equal)
            {
                ok=0;
                break;
            }
        }
        if(ok)  if(!bfs(cur+1))
                return 0;
    }
    return 1;
}

int main()
{
    while(cin>>n>>l&&n&&l)
    {
        cnt=0;
        bfs(0);
    }
    return 0;
}

 

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