Submission #1482277


Source Code Expand

//#define __USE_MINGW_ANSI_STDIO 0
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<int, int> PII;

#define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
#define IN(a, b, x) (a<=x&&x<b)
#define MP make_pair
#define PB push_back
#define INF (1LL<<30)
#define LLINF (1LL<<60)
#define PI 3.14159265359
#define EPS 1e-12
//#define int ll

template <typename T> T &chmin(T &a, const T &b) { return a = min(a, b); }
template <typename T> T &chmax(T &a, const T &b) { return a = max(a, b); }

int dx[] = {0, 1, 0, -1}, dy[] = {1, 0, -1, 0};

signed main(void)
{
  string s;
  int n, a, b;
  cin >> n >> a >> b >> s;

  int all = 0, f = 0;
  REP(i, n) {
    if(s[i] == 'a') {
      if(all < a+b) {
        all++;
        cout << "Yes" << endl;
      } else {
        cout << "No" << endl;
      }
    }
    if(s[i] == 'b') {
      if(all < a+b && f < b) {
        all++;
        f++;
        cout << "Yes" << endl;
      } else {
        cout << "No" << endl;
      }
    }
    if(s[i] == 'c') {
      cout << "No" << endl;
    }
  }

  return 0;
}

Submission Info

Submission Time
Task B - Qualification simulator
User ferin_tech
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1296 Byte
Status AC
Exec Time 161 ms
Memory 896 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 13
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 158 ms 768 KB
02.txt AC 157 ms 768 KB
03.txt AC 158 ms 768 KB
04.txt AC 157 ms 768 KB
05.txt AC 138 ms 768 KB
06.txt AC 161 ms 768 KB
07.txt AC 160 ms 896 KB
08.txt AC 160 ms 896 KB
09.txt AC 157 ms 768 KB
10.txt AC 154 ms 768 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB