# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1109500 | 8pete8 | COVID tests (CEOI24_covid) | C++17 | 5294 ms | 588 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cassert>
#include <cstdio>
#include <string>
#include <vector>
using namespace std;
int N;
double P;
bool test_students(std::vector<bool> mask) {
assert(mask.size() == (size_t)N);
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';
}
int T;
int answer[1001+10];
void solve(int ql,int qr){
int l=ql,r=qr;
vector<bool>qry(N,0);
while(l<=qr){
r=qr;
int pos=N;
for(int j=0;j<N;j++)qry[j]=0;
for(int j=l;j<=r;j++)qry[j]=1;
if(!test_students(qry))return;
while(l<=r){
int mid=l+(r-l)/2;
for(int j=0;j<N;j++)qry[j]=0;
for(int j=l;j<=mid;j++)qry[j]=1;
if(test_students(qry))pos=min(pos,mid),r=mid-1;
else l=mid+1;
}
if(pos==N)return;
l=pos+1;
answer[pos]=1;
}
}
void find_positive(int gap){
for(int j=0;(j*gap)<N;j++){
solve(j*gap,min(N-1,(j*gap)+gap-1));
}
}
int main() {
scanf("%d %lf %d", &N, &P, &T);
for (int i = 0; i < T; i++) {
for(int j=0;j<N;j++)answer[j]=0;
int gap;
if(T==1)gap=1;
else if(P==0.001)gap=700;
else if(P==0.005256)gap=138;
else if(P==0.011546)gap=63;
else if(P==0.028545)gap=25;
else if(P==0.039856)gap=17;
else if(P==0.068648)gap=10;
else if (P==0.104571)gap=7;
else if(P==0.158765)gap=5;
else if(P==0.2)gap=3;
else assert(0);
find_positive(gap);
std::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 (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |