#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<typename T>
void print(vector<T> v)
{
cout << " ---> ";
for (auto &x : v)
{
cout << x << " ";
}
cout << "\n";
}
vector<int> solve(string s)
{
vector<int> cur;
for (auto &ch : s)
{
if (ch == '1')
{
cur.push_back(0);
continue;
}
if (ch == '2')
{
cur.push_back(1);
continue;
}
if (ch == 'U')
{
cur.pop_back();
continue;
}
if (ch == 'R')
{
int p = (int) cur.size() - 1;
while (1)
{
cur[p] ^= 1;
if (cur[p] == 1)
{
break;
}
p--;
assert(p >= 0);
}
continue;
}
if (ch == 'L')
{
int p = (int) cur.size() - 1;
while (1)
{
cur[p] ^= 1;
if (cur[p] == 0)
{
break;
}
p--;
assert(p >= 0);
}
continue;
}
assert(0);
}
return cur;
}
int get_level(ll x)
{
if (x == 1)
{
return 1;
}
else
{
assert(x >= 2);
return 1 + get_level(x / 2);
}
}
ll solve(ll a, ll b)
{
if (a == b)
{
return 0;
}
if (get_level(b) > get_level(a))
{
return 1 + solve(a, b / 2);
}
if (get_level(a) > get_level(b))
{
return 1 + solve(a / 2, b);
}
assert(get_level(a) == get_level(b));
return min(abs(a - b), 2 + solve(a / 2, b / 2));
}
int first_dif = -1;
int get(vector<int>& x, vector<int>& y, ll& dif)
{
if ((int) x.size() > (int) y.size())
{
x.pop_back();
return 1 + get(x, y, dif);
}
if ((int) x.size() < (int) y.size())
{
y.pop_back();
return 1 + get(x, y, dif);
}
if (x == y)
{
dif = 0;
return 0;
}
assert((int) x.size() == (int) y.size());
assert((int) x.size() >= 1);
assert((int) y.size() >= 1);
int lst_x = x.back(), lst_y = y.back();
x.pop_back();
y.pop_back();
int sol = 2 + get(x, y, dif);
x.push_back(lst_x);
y.push_back(lst_y);
/// dif = what ?
assert(first_dif != -1);
int inside = (int) x.size() - first_dif;
dif *= 2;
dif += x.back() - y.back();
if (dif > (ll) 1e18)
{
dif = (ll) 1e18;
}
if (dif < -(ll) 1e18)
{
dif = -(ll) 1e18;
}
sol = min((ll) sol, abs(dif));
return sol;
}
int main()
{
#ifdef ONPC
freopen ("input.txt", "r", stdin);
#endif // ONPC
#ifndef ONPC
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#endif // ONPC
string s, t;
cin >> s >> t;
vector<int> x = solve(s), y = solve(t);
for (int i = 0; i < (int) x.size() && i < (int) y.size(); i++)
{
if (x[i] != y[i])
{
first_dif = i;
break;
}
}
ll dif;
int sol = get(x, y, dif);
cout << sol << "\n";
return 0;
}
/**
**/
Compilation message
board.cpp: In function 'int get(std::vector<int>&, std::vector<int>&, ll&)':
board.cpp:144:7: warning: unused variable 'inside' [-Wunused-variable]
144 | int inside = (int) x.size() - first_dif;
| ^~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
596 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
2 ms |
468 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
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 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
3 ms |
724 KB |
Output is correct |
3 |
Correct |
2 ms |
468 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
0 ms |
288 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
468 KB |
Output is correct |
2 |
Correct |
3 ms |
724 KB |
Output is correct |
3 |
Correct |
2 ms |
468 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
0 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1096 ms |
1260 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1092 ms |
1144 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1060 ms |
1108 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |