// -------------------- Includes -------------------- //
#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <stdio.h>
#include <cstdlib>
#include <stdlib.h>
#include <array>
#include <string>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <math.h>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <bitset>
#include <list>
#include <iterator>
#include <numeric>
#include <complex>
#include <tuple>
#include <utility>
#include <cassert>
#include <assert.h>
#include <climits>
#include <limits.h>
#include <ctime>
#include <time.h>
#include <random>
#include <chrono>
#include <fstream>
using namespace std;
// -------------------- Typedefs -------------------- //
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
typedef long double ld;
// -------------------- Defines -------------------- //
#define pr pair
#define mpr make_pair
#define ff first
#define ss second
#define mset multiset
#define mmap multimap
#define uset unordered_set
#define umap unordered_map
#define umset unordered_multiset
#define ummap unordered_multimap
#define pqueue priority_queue
#define sz(x) (int((x).size()))
#define len(x) (int((x).length()))
#define all(x) (x).begin(), (x).end()
#define clr(x) (x).clear()
#define ft front
#define bk back
#define pf push_front
#define pb push_back
#define popf pop_front
#define popb pop_back
#define lb lower_bound
#define ub upper_bound
#define bs binary_search
// -------------------- Constants -------------------- //
const int MAX = int(1e9 + 5);
const ll MAXL = ll(1e18 + 5);
const ll MOD = ll(1e9 + 7);
const ll MOD2 = ll(998244353);
// -------------------- Solution -------------------- //
int N;
double P;
inline bool test_students(vector<bool> mask) {
assert(mask.size() == (size_t)N);
string mask_str(N, ' ');
for (int i = 0; i < N; i++)
mask_str[i] = mask[i] ? '1' : '0';
printf("Q %s\n", mask_str.c_str());
fflush(stdout);
char answer;
scanf(" %c", &answer);
return (answer == 'P');
}
vector<bool> ans;
bool qry(int l, int r)
{
vector<bool> msk(N, 0);
for (int i = l; i <= r; i++) msk[i - 1] = 1;
return test_students(msk);
}
void calc(int tl, int tr)
{
if (tl == tr) {
if (qry(tl, tl)) ans[tl - 1] = 1;
else ans[tl - 1] = 0;
return;
}
int m = (tl + tr) / 2;
if (qry(tl, m)) {
//if (tl == m) ans[tl - 1] = 1;
//else calc(tl, m);
calc(tl, m);
}
else for (int i = tl; i <= m; i++) ans[i - 1] = 0;
if (qry(m + 1, tr)) {
//if (m + 1 == tr) ans[m] = 1;
//else calc(m + 1, tr);
calc(m + 1, tr);
}
else for (int i = m + 1; i <= tr; i++) ans[i - 1] = 0;
return;
}
vector<bool> find_positive()
{
int i, j;
int h = int(db(N) * P);
//calc(1, N);
int len = min(N, N / h);
len = 251;
assert(1 <= h && h <= N);
for (i = 1; i <= N; i += len) calc(i, min(N, i + len - 1));
return ans;
}
int main()
{
int T;
scanf("%d %lf %d", &N, &P, &T);
ans.resize(N);
for (int i = 0; i < T; i++) {
vector<bool> answer = find_positive();
assert(answer.size() == (size_t)N);
string answer_str(N, ' ');
for (int j = 0; j < N; j++)
answer_str[j] = answer[j] ? '1' : '0';
printf("A %s\n", answer_str.c_str());
fflush(stdout);
char verdict;
scanf(" %c", &verdict);
if (verdict == 'W') exit(0);
}
return 0;
}
Compilation message
Main.cpp: In function 'std::vector<bool> find_positive()':
Main.cpp:150:9: warning: unused variable 'j' [-Wunused-variable]
150 | int i, j;
| ^
Main.cpp: In function 'bool test_students(std::vector<bool>)':
Main.cpp:103:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
103 | scanf(" %c", &answer);
| ~~~~~^~~~~~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:169:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
169 | scanf("%d %lf %d", &N, &P, &T);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:185:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
185 | scanf(" %c", &verdict);
| ~~~~~^~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
14 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
41 ms |
340 KB |
Output is correct (P=0.001, F=15.1, Q=21.5) -> 33.39 points |
2 |
Correct |
169 ms |
344 KB |
Output is correct (P=0.005256, F=51.1, Q=78.5) -> 28.62 points |
3 |
Correct |
298 ms |
344 KB |
Output is correct (P=0.011546, F=94.9, Q=154.7) -> 25.56 points |
4 |
Correct |
609 ms |
344 KB |
Output is correct (P=0.028545, F=191.5, Q=325.5) -> 23.69 points |
5 |
Correct |
795 ms |
344 KB |
Output is correct (P=0.039856, F=246.3, Q=420.7) -> 23.48 points |
6 |
Correct |
1232 ms |
344 KB |
Output is correct (P=0.068648, F=366.2, Q=631.9) -> 23.06 points |
7 |
Correct |
1697 ms |
344 KB |
Output is correct (P=0.104571, F=490.3, Q=850.2) -> 22.86 points |
8 |
Correct |
2273 ms |
344 KB |
Output is correct (P=0.158765, F=639.1, Q=1118.7) -> 22.49 points |
9 |
Correct |
2701 ms |
344 KB |
Output is correct (P=0.2, F=731.4, Q=1306.5) -> 21.71 points |