結果

問題 No.2553 Holidays
ユーザー tnakao0123tnakao0123
提出日時 2024-06-18 23:29:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,854 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 65,240 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-18 23:29:14
合計ジャッジ時間 3,366 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2553.cc:  No.2553 Holidays - yukicoder
 */

#include<cstdio>
#include<vector>
#include<queue>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 100000;

/* typedef */

using pii = pair<int,int>;
using vpii = vector<pii>;
using qpii = queue<pii>;

/* global variables */

char s[MAX_N + 4];

/* subroutines */

bool cmppii(const pii &a, const pii &b) {
  return a.second - a.first > b.second - b.first;
}

/* main */

int main() {
  int n, m;
  scanf("%d%d%s", &n, &m, s);

  qpii q0, q1;
  vpii es;
  for (int i = 0; i < n;) {
    while (i < n && s[i] != '-') i++;
    if (i >= n) break;

    int j= i;
    while (i < n && s[i] == '-') i++;

    bool lf = (j > 0 && s[j - 1] == 'o');
    bool rf = (i < n && s[i] == 'o');
    if (lf && rf) {
      if ((i - j) & 1) q0.push({j, i});
      else q1.push({j, i});
    }
    else if (lf || rf) q1.push({j, i});
    else es.push_back({j, i});
  }

  while (m > 0 && ! q0.empty()) {
    auto [l, r] = q0.front(); q0.pop();
    for (int i = l + 1; m > 0 && i < r; i += 2)
      s[i] = 'o', m--;
  }

  while (m > 0 && ! q1.empty()) {
    auto [l, r] = q1.front(); q1.pop();
    if (l > 0 && s[l - 1] == 'o')
      for (int i = l + 1; m > 0 && i < r; i += 2)
	s[i] = 'o', m--;
    else
      for (int i = r - 2; m > 0 && i >= l; i -= 2)
	s[i] = 'o', m--;
  }

  sort(es.begin(), es.end(), cmppii);
  for (auto [l, r]: es) {
    if (m <= 0) break;

    if (r - l >= 3)
      for (int i = l; i < r; i += 2)
	s[i] = 'o', m--;
  }

  for (int i = 1; i + 1 < n; i++)
    if (s[i] == '-' && s[i - 1] == 'o' && s[i + 1] == 'o')
      s[i] = 'o';

  for (int i = 0; m > 0 && i < n; i++)
    if (s[i] == '-') s[i] = 'o', m--;
  
  int cnt = 0;
  for (int i = 0; i < n; i++)
    if (s[i] == 'o') cnt++;
  
  printf("%d\n", cnt);
  
  return 0;
}
0