Submission #1662575


Source Code Expand

#include <bits/stdc++.h>
// iostream is too mainstream
#include <cstdio>
// bitch please
#include <iostream>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <cmath>
#include <iomanip>
#include <time.h>
#define dibs reserve
#define OVER9000 1234567890123456789LL
#define ALL_THE(CAKE,LIE) for(auto LIE =CAKE.begin(); LIE != CAKE.end(); LIE++)
#define tisic 47
#define soclose 1e-8
#define chocolate win
// so much chocolate
#define patkan 9
#define ff first
#define ss second
#define abs(x) ((x < 0)?-(x):x)
#define uint unsigned int
#define dbl long double
#define pi 3.14159265358979323846
using namespace std;
// mylittledoge

typedef long long cat;

#ifdef DONLINE_JUDGE
	// palindromic tree is better than splay tree!
	#define lld I64d
#endif

int main() {
	cin.sync_with_stdio(0);
	cin.tie(0);
	cout << fixed << setprecision(10);
	int N,A,B;
	string S;
	cin >> N >> A >> B >> S;
	int passJ =0, passO =0;
	for(int i =0; i < N; i++) {
		if(S[i] == 'c') {
			cout << "No\n";
			continue;
		}
		if(S[i] == 'a') {
			if(passJ+passO < A+B) {
				passJ++;
				cout << "Yes\n";
			}
			else cout << "No\n";
		}
		if(S[i] == 'b') {
			if(passJ+passO < A+B && passO < B) {
				passO++;
				cout << "Yes\n";
			}
			else cout << "No\n";
		}
	}
	return 0;}

// look at my code
// my code is amazing

Submission Info

Submission Time
Task B - Qualification simulator
User xellos
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1463 Byte
Status AC
Exec Time 5 ms
Memory 848 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 5 ms 720 KB
02.txt AC 5 ms 848 KB
03.txt AC 5 ms 848 KB
04.txt AC 5 ms 848 KB
05.txt AC 4 ms 640 KB
06.txt AC 4 ms 720 KB
07.txt AC 5 ms 848 KB
08.txt AC 5 ms 848 KB
09.txt AC 4 ms 848 KB
10.txt AC 4 ms 848 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB