結果

問題 No.2553 Holidays
ユーザー Nzt3Nzt3
提出日時 2024-01-11 23:24:53
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,596 bytes
コンパイル時間 2,433 ms
コンパイル使用メモリ 211,616 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-27 20:40:44
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N, M;
  cin >> N >> M;
  string S;
  cin >> S;
  S += 'x';
  vector oo(0, 0), ox(0, 0), xx(0, 0);
  int cnt1 = 0;
  ll ans = 0;
  for (int i = 0, o = 0, cnt = 0; i <= N; i++) {
    if (S[i] != '-') {
      if (S[i] == 'o') ans += 1;
      if (cnt == 0) {
        o = (S[i] == 'o' ? 1 : 0);
        continue;
      }
      if (S[i] == 'o') o += 1;
      switch (o) {
        case 0:
          xx.push_back(cnt);
          break;
        case 1:
          if (cnt == 0)
            cnt1 += 1;
          else
            ox.push_back(cnt);
          break;
        case 2:
          oo.push_back(cnt);
          break;
      }
      cnt = 0;
      o = (S[i] == 'o' ? 1 : 0);
    } else {
      cnt += 1;
    }
  }
  sort(oo.begin(), oo.end(), [](int a, int b) {
    if (a % 2 != b % 2) {
      return (a % 2 == 1);
    }
    return a < b;
  });
  sort(ox.begin(), ox.end());
  sort(xx.begin(), xx.end(), greater<int>());
  for (int i : oo) {
    if (i / 2 <= M) {
      ans += i;
      M -= i / 2;
    } else {
      ans += M * 2;
      M = 0;
    }
  }
  for (int i : ox) {
    if (i / 2 <= M) {
      ans += i - i % 2;
      M -= i / 2;
      cnt1 += i % 2;
    } else {
      ans += M * 2;
      M = 0;
    }
  }
  for (int i : xx) {
    if ((i + 1) / 2 <= M) {
      cnt1 += 1 - i % 2;
      ans += i - 1 + i % 2;
      M -= (i + 1) / 2;
    } else if (M > 0) {
      ans += M * 2 - 1;
      M = 0;
    }
  }
  ans += min(M, cnt1);
  cout << ans << '\n';
}
0