結果

問題 No.2553 Holidays
ユーザー tnakao0123tnakao0123
提出日時 2024-06-18 23:48:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 2,056 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 62,292 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-18 23:48:08
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_08 AC 3 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 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 4 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 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 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 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 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 ltpii(const pii &a, const pii &b) {
  return a.second - a.first < b.second - b.first;
}

bool gtpii(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);

  vpii q0, q1, q2;
  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_back({j, i});
      else q1.push_back({j, i});
    }
    else if (lf || rf) q1.push_back({j, i});
    else q2.push_back({j, i});
  }

  sort(q0.begin(), q0.end(), ltpii);
  for (auto [l, r]: q0) {
    if (m <= 0) break;
    for (int i = l + 1; m > 0 && i < r; i += 2)
      s[i] = 'o', m--;
  }
  //printf(" s=%s, m=%d\n", s, m);
  
  for (auto [l, r]: q1) {
    if (m <= 0) break;
    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--;
  }
  //printf(" s=%s, m=%d\n", s, m);

  sort(q2.begin(), q2.end(), gtpii);
  for (auto [l, r]: q2) {
    if (m <= 0) break;
    if (r - l >= 3)
      for (int i = l; m > 0 && i < r; i += 2)
	s[i] = 'o', m--;
  }
  //printf(" s=%s, m=%d\n", s, 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