Boomerang Decoration

問題

文字列a,bが与えられる。 prefixとsuffixをそれぞれ何らかの文字で塗り潰す変換a=(a1,a2,,an)a=(x,x,x,,x,ai,ai+1,ai+2,,aj1,aj,y,y,y,y)ができる。 これを繰り返し、文字列abに変換するとき、変換は最小で何回必要か。

解法

貪欲に両側から塗っていって、完成したら終了。O(n)

実装

実験したところstring.operator !=でも間に合うようなのでさぼった。O(n2)

#include <iostream>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
using namespace std;
void solve() {
    int n; string a, b; cin >> n >> a >> b;
    int ans = 0;
    for (int i = 0, j = n-1; a != b; ++ ans) {
        int pi = i; while (i <  n and b[i] == b[pi]) { a[i] = b[i]; ++ i; }
        int pj = j; while (j >= 0 and b[j] == b[pj]) { a[j] = b[j]; -- j; }
    }
    cout << ans << endl;
}
int main() {
    int testcases; cin >> testcases;
    repeat (testcase, testcases) {
        cout << "Case #" << testcase+1 << ": ";
        solve();
    }
    return 0;
}