Submission #624944

# Submission time Handle Problem Language Result Execution time Memory
624944 2022-08-09T07:53:33 Z andrei_boaca Board (CEOI13_board) C++14
10 / 100
200 ms 262144 KB
#include <bits/stdc++.h>
 
using namespace std;
typedef long long ll;
ll a,b,goodA,goodB;
string s;
vector<ll> val,va,vb;
void multiply()
{
    ll lg=val.size();
    int last=lg%2;
    if(last==1)
        val.push_back(1);
    else
        val[lg-1]++;
}
void divide()
{
    ll lg=val.size();
    int last=lg%2;
    if(val[lg-1]==1)
        val.pop_back();
    else
        val[lg-1]--;
}
void add()
{
    ll lg=val.size();
    int last=lg%2;
    if(last==0)
    {
        if(val[lg-1]>1)
        {
            val[lg-1]--;
            val.push_back(1);
        }
        else
        {
            val.pop_back();
            lg--;
            val[lg-1]++;
        }
        return;
    }
    else
    {
        ll nr1=val[lg-1];
        ll nr0=val[lg-2];
        val.pop_back();
        val.pop_back();
        lg-=2;
        if(nr0==1)
        {
            val[lg-1]++;
            val.push_back(nr1);
        }
        else
        {
            nr0--;
            val.push_back(nr0);
            val.push_back(1);
            val.push_back(nr1);
        }
    }
}
void subtract()
{
    int lg=val.size();
    int last=lg%2;
    if(last==1)
    {
        if(val[lg-1]==1)
        {
            lg--;
            val.pop_back();
            val[lg-1]++;
        }
        else
        {
            val[lg-1]--;
            val.push_back(1);
        }
        return;
    }
    else
    {
        ll nr0=val[lg-1];
        ll nr1=val[lg-2];
        val.pop_back();
        val.pop_back();
        if(nr1==1)
        {
            val[lg-1]++;
            val.push_back(nr0);
        }
        else
        {
            nr1--;
            val.push_back(nr1);
            val.push_back(1);
            val.push_back(nr0);
        }
    }
}
ll getniv(ll x)
{
    for(ll d=0;d<=62;d++)
    {
        ll st=(1LL<<d);
        ll dr=st*2LL-1;
        if(x>=st&&x<=dr)
            return d;
    }
    return -1;
}
int main()
{
    cin>>s;
    val.push_back(1);
    goodA=1;
    for(char c:s)
    {
        if(c=='1')
        {
            multiply();
            goodA*=2LL;
        }
        if(c=='2')
        {
            multiply();
            goodA*=2LL;
            add();
            goodA++;
        }
        if(c=='U')
        {
            divide();
            goodA/=2;
        }
        if(c=='L')
        {
            subtract();
            goodA--;
        }
        if(c=='R')
        {
            add();
            goodA++;
        }
    }
    for(int i=0;i<val.size();i++)
    {
        if(i%2==0)
        {
            for(int j=1;j<=val[i];j++)
                va.push_back(1);
        }
        else
        {
            for(int j=1;j<=val[i];j++)
                va.push_back(0);
        }
    }
    val.clear();
    val.shrink_to_fit();
    cin>>s;
    val.push_back(1);
    goodB=1;
    for(char c:s)
    {
        if(c=='1')
        {
            multiply();
            goodB*=2LL;
        }
        if(c=='2')
        {
            multiply();
            goodB*=2LL;
            add();
            goodB++;
        }
        if(c=='U')
        {
            divide();
            goodB/=2;
        }
        if(c=='L')
        {
            subtract();
            goodB--;
        }
        if(c=='R')
        {
            add();
            goodB++;
        }
    }
    for(int i=0;i<val.size();i++)
    {
        if(i%2==0)
        {
            for(int j=1;j<=val[i];j++)
                vb.push_back(1);
        }
        else
        {
            for(int j=1;j<=val[i];j++)
                vb.push_back(0);
        }
    }
    ll rez=0;
    ll ans=1e18;
    /*while(va.size()>50)
    {
        va.pop_back();
        rez++;
    }
    while(vb.size()>50)
    {
        vb.pop_back();
        rez++;
    }*/
    /*ll a=0,b=0;
    for(int i:va)
    {
        a=a*2LL+i;
        //cout<<i;
    }
    for(int i:vb)
        b=b*2LL+i;*/
    //assert(a==goodA&&b==goodB);
    a=goodA;
    b=goodB;
    if(a<b)
        swap(a,b);
    ll nivA=getniv(a),nivB=getniv(b);
    while(nivA>nivB)
    {
        nivA--;
        rez++;
        a/=2;
    }
    while(nivA>=0)
    {
        ans=min(ans,rez+abs(a-b));
        rez+=2;
        a/=2;
        b/=2;
        nivA--;
    }
    cout<<ans;
    return 0;
}

Compilation message

board.cpp: In function 'void divide()':
board.cpp:20:9: warning: unused variable 'last' [-Wunused-variable]
   20 |     int last=lg%2;
      |         ^~~~
board.cpp: In function 'int main()':
board.cpp:151:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  151 |     for(int i=0;i<val.size();i++)
      |                 ~^~~~~~~~~~~
board.cpp:199:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  199 |     for(int i=0;i<val.size();i++)
      |                 ~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Execution timed out 239 ms 262144 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Runtime error 1 ms 340 KB Execution killed with signal 6
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 496 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 596 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 1720 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 9 ms 1784 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 9 ms 1772 KB Output isn't correct
2 Halted 0 ms 0 KB -