#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) begin(a), end(a)
using ll = long long;
using vi = vector<int>;
using ar2 = array<int,2>;
using ar3 = array<int,3>;
using ar4 = array<int,4>;
const int INF = (int)2e9;
const int mxN = (int)1e6+10;
int N;
double P;
map<vector<bool>,bool> M;
// This function performs a test on a subset of samples.
// Its argument is a vector of Booleans of length N,
// where the i-th element is true if the i-th sample should be added to the mix.
// It returns true if (and only if) at least one of the samples in the mix is positive.
bool test_students(std::vector<bool> mask) {
assert(mask.size() == (size_t)N);
//if(M.count(mask)) return M[mask];
std::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');
}
/// You should implement:
// This function will be called once for each test instance.
// It should use test_students to determine which samples are positive.
// It must return a vector of Booleans of length N,
// where the i-th element is true if and only if the i-th sample is positive.
vector<bool> find_positive() {
vector<bool> answer(N,false), test(N,false);
vector<int> XD(N,0); iota(all(XD),0); random_shuffle(all(XD));
double prob = 1.0-P;
int B = 1;
while(prob*(1.0-P)>0.5) prob*=(1.0-P), B++;
for(int i = 0; i < N; i+=B){
int l = i, rr = min(N,i+B)-1;
for(int j = l; j <= rr; j++) test[XD[j]]=1;
int chk = test_students(test);
for(int j = l; j <= rr; j++) test[XD[j]]=0;
if(!chk) continue;
while(l<=rr){
int r = rr+1;
while(l<r){
int mid = (l+r)/2;
for(int j = l; j <= mid; j++) test[XD[j]]=1;
int chk = test_students(test);
for(int j = l; j <= mid; j++) test[XD[j]]=0;
if(chk) r=mid;
else l=mid+1;
}
if(l==rr+1) break;
answer[XD[l]]=1; l++;
}
for(int j = i; j <=rr; j++) test[XD[j]]=0;
}
return answer;
}
int main() {
int T;
scanf("%d %lf %d", &N, &P, &T);
// You may perform any extra initialization here.
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 'bool test_students(std::vector<bool>)':
Main.cpp:32:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
32 | scanf(" %c", &answer);
| ~~~~~^~~~~~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:74:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
74 | scanf("%d %lf %d", &N, &P, &T);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:90:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
90 | 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 |
Correct |
14 ms |
344 KB |
Output is correct |
2 |
Correct |
13 ms |
344 KB |
Output is correct |
3 |
Correct |
10 ms |
344 KB |
Output is correct |
4 |
Correct |
11 ms |
340 KB |
Output is correct |
5 |
Correct |
14 ms |
344 KB |
Output is correct |
6 |
Correct |
11 ms |
344 KB |
Output is correct |
7 |
Correct |
11 ms |
344 KB |
Output is correct |
8 |
Correct |
11 ms |
344 KB |
Output is correct |
9 |
Correct |
13 ms |
344 KB |
Output is correct |
10 |
Correct |
5 ms |
344 KB |
Output is correct |
11 |
Correct |
8 ms |
344 KB |
Output is correct |
12 |
Correct |
9 ms |
344 KB |
Output is correct |
13 |
Correct |
8 ms |
344 KB |
Output is correct |
14 |
Correct |
8 ms |
344 KB |
Output is correct |
15 |
Correct |
11 ms |
344 KB |
Output is correct |
16 |
Correct |
15 ms |
340 KB |
Output is correct |
17 |
Execution timed out |
7030 ms |
344 KB |
Time limit exceeded |
18 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
38 ms |
344 KB |
Output is correct (P=0.001, F=15.1, Q=15.0) -> 90.00 points |
2 |
Correct |
155 ms |
344 KB |
Output is correct (P=0.005256, F=51.1, Q=60.7) -> 51.39 points |
3 |
Correct |
264 ms |
344 KB |
Output is correct (P=0.011546, F=94.9, Q=114.7) -> 49.06 points |
4 |
Correct |
538 ms |
344 KB |
Output is correct (P=0.028545, F=191.5, Q=227.5) -> 51.37 points |
5 |
Correct |
651 ms |
344 KB |
Output is correct (P=0.039856, F=246.3, Q=289.7) -> 52.79 points |
6 |
Correct |
970 ms |
344 KB |
Output is correct (P=0.068648, F=366.2, Q=426.7) -> 54.19 points |
7 |
Correct |
1286 ms |
344 KB |
Output is correct (P=0.104571, F=490.3, Q=563.0) -> 56.49 points |
8 |
Correct |
1591 ms |
344 KB |
Output is correct (P=0.158765, F=639.1, Q=740.5) -> 55.06 points |
9 |
Correct |
1895 ms |
344 KB |
Output is correct (P=0.2, F=731.4, Q=817.9) -> 61.10 points |