Submission #57531624


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---------------------------------------
int32_t main()
{
    int T=1;
    // cin>>t;
    while(T--)
    {
        string s,t;
        cin>>s;
        cin>>t;
        if(s==t)
        {
            cout<<"0"<<endl;
            continue;
        }
        int n=s.size();
        vector<pair<int, char>> small,big;
        for (int i = 0; i < n; i++)
        {
            if(s[i]==t[i])
            {
                continue;
            }

            if(s[i]>t[i])
            {
                small.push_back({i, t[i]});
            }
            else
            {
                big.push_back({i, t[i]});
            }
        }
        sort(small.begin(), small.end());
        sort(big.begin(), big.end());
        string curr=s;
        vector<string> ans;
        for(int i=0; i<small.size(); i++)
        {
            curr[small[i].first]=small[i].second;
            ans.push_back(curr);
        }
        for(int i=big.size()-1; i>=0; i--)
        {
            curr[big[i].first]=big[i].second;
            ans.push_back(curr);
        }
        cout<<ans.size()<<endl;
        for(int i=0; i<ans.size(); i++)
        {
            cout<<ans[i]<<endl;
        }
        
    }
    return 0;
}

Submission Info

Submission Time
Task C - Word Ladder
User isha_406
Language C++ 20 (gcc 12.2)
Score 300
Code Size 4589 Byte
Status AC
Exec Time 1 ms
Memory 3644 KB

Compile Error

Main.cpp: In function ‘int32_t main()’:
Main.cpp:168:23: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::vector<std::pair<long long int, char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
  168 |         for(int i=0; i<small.size(); i++)
      |                      ~^~~~~~~~~~~~~
Main.cpp:179:23: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
  179 |         for(int i=0; i<ans.size(); i++)
      |                      ~^~~~~~~~~~~

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 26
Set Name Test Cases
Sample sample00.txt, sample01.txt, sample02.txt
All sample00.txt, sample01.txt, sample02.txt, testcase00.txt, testcase01.txt, testcase02.txt, testcase03.txt, testcase04.txt, testcase05.txt, testcase06.txt, testcase07.txt, testcase08.txt, testcase09.txt, testcase10.txt, testcase11.txt, testcase12.txt, testcase13.txt, testcase14.txt, testcase15.txt, testcase16.txt, testcase17.txt, testcase18.txt, testcase19.txt, testcase20.txt, testcase21.txt, testcase22.txt
Case Name Status Exec Time Memory
sample00.txt AC 1 ms 3540 KB
sample01.txt AC 1 ms 3524 KB
sample02.txt AC 1 ms 3484 KB
testcase00.txt AC 1 ms 3544 KB
testcase01.txt AC 1 ms 3520 KB
testcase02.txt AC 1 ms 3560 KB
testcase03.txt AC 1 ms 3628 KB
testcase04.txt AC 1 ms 3624 KB
testcase05.txt AC 1 ms 3484 KB
testcase06.txt AC 1 ms 3504 KB
testcase07.txt AC 1 ms 3644 KB
testcase08.txt AC 1 ms 3620 KB
testcase09.txt AC 1 ms 3520 KB
testcase10.txt AC 1 ms 3624 KB
testcase11.txt AC 1 ms 3492 KB
testcase12.txt AC 1 ms 3576 KB
testcase13.txt AC 1 ms 3568 KB
testcase14.txt AC 1 ms 3508 KB
testcase15.txt AC 1 ms 3572 KB
testcase16.txt AC 1 ms 3548 KB
testcase17.txt AC 1 ms 3556 KB
testcase18.txt AC 1 ms 3620 KB
testcase19.txt AC 1 ms 3616 KB
testcase20.txt AC 1 ms 3540 KB
testcase21.txt AC 1 ms 3496 KB
testcase22.txt AC 1 ms 3576 KB


2025-04-04 (Fri)
01:50:54 +00:00