Submission #55794667


Source Code Expand

Copy
#include<bits/stdc++.h>
using namespace std;
// -----------------------------------------------------macros------------------------------------------------------------------
#define int long long int
#define vi vector<int>
#define pb push_back
#define in(a, b, arr) for(int i = a; i < b; i++){cin>>arr[i];}
#define out(a, b, arr) for(int i = a; i < b; i++){cout<<arr[i]<<' ';}cout<<endl;
//------------------------------------------------------ constants ------------------------------------------------------------
int mod=1e9+7;
// ------------------------------------------------------basic functions----------------------------------------------------------------
void primeSieve(vector<int> &sieve, int N)
{
// mark 1 and 0 as not prime
sieve[1] = sieve[0] = 0;
// start from 2 and mark all multiples of ith number(prime) as not prime
for (int i = 2; i <= N ; i++)
{
int p = sieve[i];
if (p==1)
{
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<bits/stdc++.h>
using namespace std;
// -----------------------------------------------------macros------------------------------------------------------------------
#define int long long int
#define vi vector<int>
#define pb push_back
#define in(a, b, arr) for(int i = a; i < b; i++){cin>>arr[i];}
#define out(a, b, arr) for(int i = a; i < b; i++){cout<<arr[i]<<' ';}cout<<endl;
//------------------------------------------------------ constants ------------------------------------------------------------
int mod=1e9+7;
// ------------------------------------------------------basic functions----------------------------------------------------------------
void primeSieve(vector<int> &sieve, int N)
{
    // mark 1 and 0 as not prime
    sieve[1] = sieve[0] = 0;
    // start from 2 and mark all multiples of ith number(prime) as not prime
    for (int i = 2; i <= N ; i++)
    {
            int p = sieve[i];
            if (p==1)
            {
                for (int j = i*i; j <= N; j = j+i)
                {
                    // marking j as not prime
                    sieve[j] = 0;
                }
            }
    }
}
int power(int a,int b)
{
    a%=mod;
    int res=1;
    while(b>0)
    {
        if(b&1)
        res=(res*a)%mod;
        a=(a*a)%mod;
        b>>=1;
    }
    return res%mod;

}
vector<int> primeFactors(int n)
{
    vector<int> v;
    // Print the number of 2s that divide n 
    while (n % 2 == 0)
    {
        v.push_back(2);
        n = n/2;
    }
    // n must be odd at this point. So we can skip
    // one element (Note i = i +2)
    for (int i = 3; i <= sqrt(n); i = i + 2)
    {
        // While i divides n, print i and divide n 
        while (n % i == 0)
        {
            v.push_back(i);
            n = n/i;
        }
    }
    // This condition is to handle the case when n
    // is a prime number greater than 2 
    if (n > 2) 
        v.push_back(n);
    return v;

}
vector<int> printDivisors(int n) 
{
    vector<int> v;
    // Note that this loop runs till square root
    for (int i=1; i<=sqrt(n); i++)
    {
        if (n%i == 0)
        {
            // If divisors are equal, print only one
            if (n/i == i)
                v.push_back(i);
            else{ // Otherwise print both
                v.push_back(i);
                v.push_back(n/i);
            }
        }
    }
    return v;
}
// -------------------------------------------------------advanced functions-----------------------------------------------------
int add(int x, int y)
{
    return (x%mod + y%mod)%mod;

}
int subtract(int x, int y)
{
    return (x%mod - y%mod + mod)%mod;

}
int multiply(int x, int y)
{
    return ((x%mod)*(y%mod))%mod;

}
int divide(int x, int y)
{
    return multiply(x, power(y, mod-2));

}
int factorial(int n)
{
    int fact[n+1];
    fact[0]=1;
    for (int i = 1; i <=n; i++)
    {
        fact[i] = multiply(fact[i-1], i);
    }
    return fact[n];

}
int inverse(int x)
{
    return power(x, mod-2);

}
int nCr(int n, int r)
{
    return multiply(factorial(n), multiply(inverse(factorial(r)), inverse(factorial(n-r))));
}
//------------------------------------------------------------------main function---------------------------------------

bool check(string& s, int k)
{
    int n=s.length();
    for(int i=0; i<n-k+1; i++)
    {
        bool f=false;
        int si=i,ei=i+k-1;
        while (si<=ei)
        {
            // cout<<s[si]<<" "<<s[ei]<<endl;
            if(s[si]!=s[ei])
            {
                f=true;
                break;
            }
            si++;
            ei--;
        }

        if(!f) return false;
    }
    return true;
}


void solve(int mask, string& temp, string& s, int& ans, int k, set<string>& st)
{

    if(mask==0)
    {
        st.insert(temp);
        return;
    }

    for(int i=0; i<s.size(); i++)
    {
        int curr_bit = (1<<i)&mask;
        if(curr_bit!=0)
        {
            int new_mask = mask^(1<<i);
            temp.push_back(s[i]);
            solve(new_mask, temp, s, ans, k, st);
            temp.pop_back();
        }
    }

}

int32_t main()
{
    int t=1;
    // cin>>t;
    while(t--)
    {
        int n,k;
        cin>>n>>k;
        string s;
        cin>>s;
        string temp="";
        int mask=(1<<n)-1;
        int ans=0;
        set<string> st;
        solve(mask, temp, s, ans, k, st);
        for(auto x : st)
        {
            // cout<<x<<endl;
            ans+=check(x, k);
        }
        cout<<ans<<endl;
    }
    return 0;
}

Submission Info

Submission Time
Task C - Avoid K Palindrome 2
User isha_406
Language C++ 20 (gcc 12.2)
Score 300
Code Size 4724 Byte
Status AC
Exec Time 1027 ms
Memory 287100 KB

Compile Error

Main.cpp: In function ‘void solve(long long int, std::string&, std::string&, long long int&, long long int, std::set<std::__cxx11::basic_string<char> >&)’:
Main.cpp:167:19: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
  167 |     for(int i=0; i<s.size(); i++)
      |                  ~^~~~~~~~~

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 38
Set Name Test Cases
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, random_23.txt, random_24.txt, random_25.txt, random_26.txt, random_27.txt
Case Name Status Exec Time Memory
example_00.txt AC 1 ms 3452 KB
example_01.txt AC 1 ms 3460 KB
example_02.txt AC 581 ms 38996 KB
hand_00.txt AC 107 ms 3552 KB
hand_01.txt AC 108 ms 3480 KB
hand_02.txt AC 1022 ms 287100 KB
hand_03.txt AC 1027 ms 287044 KB
hand_04.txt AC 153 ms 3488 KB
hand_05.txt AC 547 ms 12412 KB
hand_06.txt AC 550 ms 12296 KB
random_00.txt AC 108 ms 3616 KB
random_01.txt AC 106 ms 3384 KB
random_02.txt AC 155 ms 3436 KB
random_03.txt AC 25 ms 3536 KB
random_04.txt AC 16 ms 3436 KB
random_05.txt AC 271 ms 3536 KB
random_06.txt AC 39 ms 3752 KB
random_07.txt AC 312 ms 3700 KB
random_08.txt AC 39 ms 3816 KB
random_09.txt AC 44 ms 4196 KB
random_10.txt AC 39 ms 3852 KB
random_11.txt AC 522 ms 21184 KB
random_12.txt AC 52 ms 5748 KB
random_13.txt AC 50 ms 5972 KB
random_14.txt AC 677 ms 74356 KB
random_15.txt AC 62 ms 10764 KB
random_16.txt AC 545 ms 27172 KB
random_17.txt AC 667 ms 74404 KB
random_18.txt AC 2 ms 3520 KB
random_19.txt AC 108 ms 3464 KB
random_20.txt AC 263 ms 3552 KB
random_21.txt AC 199 ms 3484 KB
random_22.txt AC 316 ms 3644 KB
random_23.txt AC 357 ms 3704 KB
random_24.txt AC 6 ms 3808 KB
random_25.txt AC 6 ms 3848 KB
random_26.txt AC 494 ms 12340 KB
random_27.txt AC 492 ms 12388 KB


2025-04-03 (Thu)
23:24:13 +00:00