Submission #916663


Source Code Expand

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <cassert>
#include <iostream>
#include <sstream>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <utility>
#include <numeric>
#include <algorithm>
#include <bitset>
#include <complex>
#include <array>
#include <list>
#include <stack>
#include <valarray>

using namespace std;

typedef unsigned uint;
typedef long long Int;
typedef unsigned long long UInt;

const int INF = 1001001001;
const Int INFLL = 1001001001001001001LL;

template<typename T> void pv(T a, T b) { for (T i = a; i != b; ++i) cout << *i << " "; cout << endl; }
template<typename T> void chmin(T& a, T b) { if (a > b) a = b; }
template<typename T> void chmax(T& a, T b) { if (a < b) a = b; }
int in() { int x; scanf("%d", &x); return x; }
double fin() { double x; scanf("%lf", &x); return x; }
Int lin() { Int x; scanf("%lld", &x); return x; }

char S[100050];

int main() {
  int N, A, B;
  N = in();
  A = in();
  B = in();
  scanf("%s", S);

  int passed = 0, passed_b = 0;
  for (int i = 0; i < N; ++i) {
    bool p = false;
    if (S[i] == 'a') {
      if (passed < A + B) {
        p = true;
        ++passed;
      }
    } else if (S[i] == 'b') {
      if (passed < A + B && passed_b < B) {
        p = true;
        ++passed;
        ++passed_b;
      }
    }
    puts(p ? "Yes" : "No");
  }

  return 0;
}

Submission Info

Submission Time
Task B - Qualification simulator
User japlj
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1457 Byte
Status AC
Exec Time 6 ms
Memory 768 KB

Compile Error

./Main.cpp: In function ‘int in()’:
./Main.cpp:34:34: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
 int in() { int x; scanf("%d", &x); return x; }
                                  ^
./Main.cpp: In function ‘double fin()’:
./Main.cpp:35:42: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
 double fin() { double x; scanf("%lf", &x); return x; }
                                          ^
./Main.cpp: In function ‘Int lin()’:
./Main.cpp:36:37: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
 Int lin() { Int x; scanf("%lld", &x); return x; }
                                     ^
./Main.cpp: In function ‘int main()’:
./Main.cpp:45:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s", S);
...

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 6 ms 640 KB
02.txt AC 6 ms 640 KB
03.txt AC 6 ms 640 KB
04.txt AC 6 ms 768 KB
05.txt AC 5 ms 640 KB
06.txt AC 5 ms 640 KB
07.txt AC 6 ms 768 KB
08.txt AC 6 ms 768 KB
09.txt AC 5 ms 640 KB
10.txt AC 5 ms 640 KB
s1.txt AC 2 ms 256 KB
s2.txt AC 2 ms 256 KB
s3.txt AC 3 ms 256 KB