【暴力】回溯求无连续重复的ABC串

uva - 129

#include
#include
#include
#include
#include
using namespace std;
typedef long long int lld;
int n,m,ok,cnt,s[100];
bool is(int k)
{
    bool p=1;
    for(int i=1;i<=k/2;i++){
        p=0;
        for(int j=0;j

 

你可能感兴趣的:(【暴力】)