Submission #1109400

#TimeUsernameProblemLanguageResultExecution timeMemory
11094008pete8COVID tests (CEOI24_covid)C++17
10 / 100
5236 ms592 KiB
#include <cassert> #include <cstdio> #include <string> #include <vector> #include<iostream> #include<stack> #include<map> #include<vector> #include<string> #include<cassert> #include<unordered_map> #include <queue> #include <cstdint> #include<cstring> #include<limits.h> #include<cmath> #include<set> #include<algorithm> #include <iomanip> #include<numeric> #include<bitset> using namespace std; #define ll long long #define f first #define s second #define pii pair<int,int> #define ppii pair<int,pii> #define vi vector<int> #define pb push_back #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() #define F(n) for(int i=0;i<n;i++) #define lb lower_bound #define ub upper_bound #define fastio ios::sync_with_stdio(false);cin.tie(NULL); #pragma GCC optimize ("03,unroll-lopps") int N; double P; string ra; bool test_students(std::vector<bool> mask){ //for(int i=0;i<N;i++)if(mask[i]&&ra[i]=='1')return 1; //return 0; 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; while(l<=r){ int mid=l+(r-l)/2; for(int j=l;j<=mid;j++)qry[j]=1; if(test_students(qry)){ for(int j=l;j<=mid;j++)qry[j]=0; pos=min(pos,mid),r=mid-1; } else{ for(int j=l;j<=mid;j++)qry[j]=0; 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); //cin>>ra; 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=500; else if(P==0.005256)gap=125; else if(P==0.011546)gap=59; 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=4; else if(P==0.2)gap=4; 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; //for(int i=0;i<N;i++)if(answer_str[i]!=ra[i])assert(0); scanf(" %c", &verdict); if (verdict == 'W') exit(0); } return 0; }

Compilation message (stderr)

Main.cpp:36:40: warning: bad option '-funroll-lopps' to pragma 'optimize' [-Wpragmas]
   36 | #pragma GCC optimize ("03,unroll-lopps")
      |                                        ^
Main.cpp:40:42: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
   40 | bool test_students(std::vector<bool> mask){
      |                                          ^
Main.cpp:54:25: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
   54 | void solve(int ql,int qr){
      |                         ^
Main.cpp:77:27: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
   77 | void find_positive(int gap){
      |                           ^
Main.cpp:82:10: warning: bad option '-funroll-lopps' to attribute 'optimize' [-Wattributes]
   82 | int main() {
      |          ^
Main.cpp: In function 'bool test_students(std::vector<bool>)':
Main.cpp:49:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   49 |     scanf(" %c", &answer);
      |     ~~~~~^~~~~~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:83:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   83 |     scanf("%d %lf %d", &N, &P, &T);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:107:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
  107 |         scanf(" %c", &verdict);
      |         ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...