結果

問題 No.2553 Holidays
ユーザー dyktr_06dyktr_06
提出日時 2023-11-18 05:18:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 2,991 bytes
コンパイル時間 2,681 ms
コンパイル使用メモリ 224,916 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-11-25 12:30:19
合計ジャッジ時間 3,818 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,676 KB
testcase_01 AC 3 ms
6,676 KB
testcase_02 AC 3 ms
6,676 KB
testcase_03 AC 3 ms
6,676 KB
testcase_04 AC 4 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 3 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 5 ms
6,676 KB
testcase_11 AC 4 ms
6,676 KB
testcase_12 AC 4 ms
6,676 KB
testcase_13 AC 5 ms
6,676 KB
testcase_14 AC 4 ms
6,676 KB
testcase_15 AC 3 ms
6,676 KB
testcase_16 AC 2 ms
6,676 KB
testcase_17 AC 3 ms
6,676 KB
testcase_18 AC 3 ms
6,676 KB
testcase_19 AC 3 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
testcase_21 AC 2 ms
6,676 KB
testcase_22 AC 3 ms
6,676 KB
testcase_23 AC 3 ms
6,676 KB
testcase_24 AC 3 ms
6,676 KB
testcase_25 AC 3 ms
6,676 KB
testcase_26 AC 3 ms
6,676 KB
testcase_27 AC 3 ms
6,676 KB
testcase_28 AC 4 ms
6,676 KB
testcase_29 AC 3 ms
6,676 KB
testcase_30 AC 2 ms
6,676 KB
testcase_31 AC 2 ms
6,676 KB
testcase_32 AC 2 ms
6,676 KB
testcase_33 AC 2 ms
6,676 KB
testcase_34 AC 2 ms
6,676 KB
testcase_35 AC 2 ms
6,676 KB
testcase_36 AC 2 ms
6,676 KB
testcase_37 AC 2 ms
6,676 KB
testcase_38 AC 2 ms
6,676 KB
testcase_39 AC 1 ms
6,676 KB
testcase_40 AC 1 ms
6,676 KB
testcase_41 AC 1 ms
6,676 KB
testcase_42 AC 2 ms
6,676 KB
testcase_43 AC 2 ms
6,676 KB
testcase_44 AC 2 ms
6,676 KB
testcase_45 AC 2 ms
6,676 KB
testcase_46 AC 2 ms
6,676 KB
testcase_47 AC 1 ms
6,676 KB
testcase_48 AC 2 ms
6,676 KB
testcase_49 AC 2 ms
6,676 KB
testcase_50 AC 2 ms
6,676 KB
testcase_51 AC 2 ms
6,676 KB
testcase_52 AC 1 ms
6,676 KB
testcase_53 AC 2 ms
6,676 KB
testcase_54 AC 2 ms
6,676 KB
testcase_55 AC 2 ms
6,676 KB
testcase_56 AC 2 ms
6,676 KB
testcase_57 AC 1 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

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<string, vector<int>> 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++;
        }
    }
    {
        vector<int> xx;
        cnt += (int) memo["xx0"].size();
        for(auto x : memo["xx1"]) xx.push_back(x);
        for(auto x : memo["xx0"]) xx.push_back(x - 1);
        sort(xx.rbegin(), xx.rend());

        for(auto x : xx){
            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);
        }
    }

    // ox1, xo1, xx0 の残り
    ans += min(can_ope, cnt);
    cout << ans << endl;
}
0