# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
997809 | cpdreamer | Bliskost (COI23_bliskost) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
void solve(){
int n, q; cin >> n >> q;
string a, b; cin >> a >> b;
string x = a, y = b;
for(int i = 0; i <= q; i++){
if(i){
int p; cin >> p;
p--;
char c; cin >> c;
x[p] = c;
a=x;
b=y;
}
for(int i = n-1; i > 0; i--){
if(a[i] <= b[i]){
int d = b[i]-a[i];
a[i] = b[i];
a[i-1] = char( ((a[i-1] -'a'+d)%26) + 'a');
}else{
int d = a[i]-b[i];
b[i] = a[i];
b[i-1] = char( ((b[i-1] -'a'+d)%26) + 'a');
}
}
cout << (a==b?"da":"ne") << '\n';
}
}