제출 #1034282

#제출 시각아이디문제언어결과실행 시간메모리
1034282aintaCOVID tests (CEOI24_covid)C++17
0 / 100
36 ms344 KiB
#include <bits/stdc++.h> using namespace std; #define rng(i,a,b) for(int i=int(a);i<=int(b);i++) #define rep(i,b) rng(i,0,b-1) #define gnr(i,b,a) for(int i=int(b);i>=int(a);i--) #define per(i,b) gnr(i,b-1,0) #define pb push_back #define eb emplace_back #define fi first #define se second #define bg begin() #define ed end() #define all(x) x.bg,x.ed #define si(x) int(x.size()) template<class t> using vc=vector<t>; template<class t> using vvc=vc<vc<t>>; typedef long long ll; using pii=pair<int,int>; using vi=vc<int>; using uint=unsigned; using ull=unsigned long long; using pil=pair<int,ll>; using pli=pair<ll,int>; using pll=pair<ll,ll>; using t3=tuple<int,int,int>; #include <cassert> #include <cstdio> #include <string> #include <vector> /// You may use: // The number of students int N; // The probability any given student is positive double P; int DEBUG = 0; // 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. int Z[1010]; int cnt=0; bool test_students(std::vector<bool> mask) { cnt++; 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); if(!DEBUG){ char answer; scanf(" %c", &answer); return answer == 'P'; } int ss=0; rep(i,N){ if(mask[i]) ss|=Z[i]; } return ss; } std::vector<bool>answer, mask; bool test_range(int b, int e){ rep(i,N)mask[i]=0; rng(i,b,e)mask[i]=1; return test_students(mask); } /// 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. void Go(int b, int e){ if(b==e){ answer[b]=1; return; } int m = (b+e)/2; if(test_range(b,m)){ Go(b,m); if(test_range(m+1,e)) Go(m+1,e); } else{ Go(m+1,e); } } std::vector<bool> find_positive() { answer.resize(N); mask.resize(N); int c = (int)(N*P+0.1); rep(i,N)answer[i]=0; int s = 0; for(int i=0;i<c;i++){ int t = N/c; if(i < N%c) t++; if(test_range(s,s+t-1)){ Go(s,s+t-1); } } //test_range(0,N-1); return answer; } ll rand_int(ll l, ll r) { //[l, r] #ifdef LOCAL static mt19937_64 gen; #else static mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count()); #endif return uniform_int_distribution<ll>(l, r)(gen); } 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++) { if(DEBUG){ rep(j,N){ if(rand_int(0,999) < P*1000){ Z[j]=1; } else Z[j]=0; } } std::vector<bool> answer = find_positive(); assert(answer.size() == (size_t)N); std::string answer_str(N, ' '); for (int j = 0; j < N; j++) answer_str[j] = answer[j] ? '1' : '0'; if(!DEBUG){ printf("A %s\n", answer_str.c_str()); fflush(stdout); char verdict; scanf(" %c", &verdict); if (verdict == 'W') exit(0); } } // printf("%f\n",(double)cnt/T); return 0; }

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'bool test_students(std::vector<bool>)':
Main.cpp:64:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   64 |   scanf(" %c", &answer);
      |   ~~~~~^~~~~~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:131:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
  131 |     scanf("%d %lf %d", &N, &P, &T);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:156:9: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
  156 |    scanf(" %c", &verdict);
      |    ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...