結果

問題 No.3143 Colorless Green Parentheses Sleep Furiously
ユーザー tobbie
提出日時 2025-05-28 22:07:20
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 198,744 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-05-28 22:07:25
合計ジャッジ時間 4,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)

int main() {
  int n, k;
  cin >> n >> k;
  string s;
  cin >> s;
  
  string t = "";
  int c = 0;
  char st[n];
  int sti = 0;
  int lvl = 0;
  vector<int> pls(n, 0);
  rep(i, n) {
    if (s[i] == '(') {
      st[sti] = s[i]; sti++;
      
      if (i > 0 && (t[(int)t.size() - 1] == ')')) {
	t += "+";
	pls[lvl]++;
      }
      lvl++;
      t += s[i];
    }
    if (s[i] == ')') {
      if (st[sti - 1] == '(')
	sti--;
      else {
	cout << "No" << endl;
	return 0;
      }
      
      if (t[(int)t.size() - 1] == '(') {
	t += "1+1";
	c += 2;
	pls[lvl]++;
      } else {
	if (pls[lvl] == 0) {
	  t += "+1";
	  c += 1;
	}
      }
      pls[lvl] = 0;
      lvl--;
      t += s[i];
    }
  }
  if (sti > 0) {
    cout << "No" << endl;
    return 0;
  }
  
  while (c < k) {
    pls[0]++;
    t += "+1";
    c++;
  }
  if (pls[0] > 0 && k == c)
    cout << "Yes" << endl << t << endl;
  else
    cout << "No" << endl;
  return 0;
}
0