#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; cin >> n >> m; string s; cin >> s; assert(3 <= n && n <= 100000); assert(0 <= m && m <= n); s += "x"; map> memo; for(int l = 0; l < n;){ int r = l + 1; while(r < n && s[l] == s[r]) r++; if(s[l] == '-'){ string t = ""; if(l == 0) t += "x"; else t += s[l - 1]; t += s[r]; t += ((r - l) % 2) + '0'; memo[t].push_back(r - l); } l = r; } int ans = 0, can_ope = m, cnt = 0; for(int i = 0; i < n; i++){ if(s[i] == 'o'){ ans++; } } { sort(memo["oo1"].begin(), memo["oo1"].end()); for(auto x : memo["oo1"]){ int cost = x / 2; if(can_ope >= cost){ ans += x; }else{ ans += can_ope * 2; } can_ope = max(0, can_ope - cost); } } { for(auto x : memo["oo0"]){ int cost = x / 2; if(can_ope >= cost){ ans += x; }else{ ans += can_ope * 2; } can_ope = max(0, can_ope - cost); } } { for(auto x : memo["ox0"]){ int cost = x / 2; if(can_ope >= cost){ ans += x; }else{ ans += can_ope * 2; } can_ope = max(0, can_ope - cost); } } { for(auto x : memo["xo0"]){ int cost = x / 2; if(can_ope >= cost){ ans += x; }else{ ans += can_ope * 2; } can_ope = max(0, can_ope - cost); } } { for(auto x : memo["ox1"]){ int cost = x / 2; if(can_ope >= cost){ ans += x - 1; }else{ ans += can_ope * 2; } can_ope = max(0, can_ope - cost); cnt++; } } { for(auto x : memo["xo1"]){ int cost = x / 2; if(can_ope >= cost){ ans += x - 1; }else{ ans += can_ope * 2; } can_ope = max(0, can_ope - cost); cnt++; } } { sort(memo["xx1"].rbegin(), memo["xx1"].rend()); for(auto x : memo["xx1"]){ int cost = (x + 1) / 2; if(can_ope >= cost){ ans += x; }else{ ans += max(0, can_ope * 2 - 1); } can_ope = max(0, can_ope - cost); } } { sort(memo["xx0"].rbegin(), memo["xx0"].rend()); for(auto x : memo["xx0"]){ int cost = (x + 1) / 2; if(can_ope >= cost){ ans += x - 1; }else{ ans += max(0, can_ope * 2 - 1); } can_ope = max(0, can_ope - cost); cnt++; } } // ox1, xo1, xx0 の残り ans += min(can_ope, cnt); cout << ans << endl; }