Submission #1021590

# Submission time Handle Problem Language Result Execution time Memory
1021590 2024-07-12T20:49:19 Z Ahmed_Solyman Counting Mushrooms (IOI20_mushrooms) C++14
Compilation error
0 ms 0 KB
/*
In the name of Allah
made by: Ahmed_Solyman
*/
#include <bits/stdc++.h>
 
using namespace std;
typedef long long ll;
 
int use_machine(vector<int>x);
int count_mushrooms(int n){
    if(n<=226){
        int ret=1;
        for(int i=1;i<n;i++){
            ret+=1-use_machine({0,i});
        }
        return ret;
    }
    int ret=0,k=73;
    vector<int>v[2];
    v[0].push_back(0);
    for(int i=1;i<=2;i++){
        if(use_machine({0,i})==0)v[0].push_back(i);
        else v[1].push_back(i);
    }
    bool typ;
    int x,y;
    if(v[0].size()>=2){
        typ=0;
        x=v[0][0];y=v[0][1];
    }
    else{
        typ=1;
        x=v[1][0];y=v[1][1];
    }
    for(int i=3;i<=2*k-2;i+=2){
        int h=use_machine({x,i,y,i+1});
        if(h==0){
            v[typ].push_back(i);
            v[typ].push_back(i+1);
        }
        if(h==1){
            v[typ^1].push_back(i);
            v[typ].push_back(i+1);
        }
        if(h==2){
            v[typ].push_back(i);
            v[typ^1].push_back(i+1);
        }
        if(h==3){
            v[typ^1].push_back(i);
            v[typ^1].push_back(i+1);
        }
    }
    auto f=[&](int l,int r){
        vector<int>p;
        vector<int>&g=(v[0].size()>v[1].size()?g=v[0],typ=0:g=v[1],typ=1);
        for(int i=l;i<=r;i++){
            p.push_back(i);
            p.push_back(g[i-l]);
        }
        int u=use_machine(p);
        if(u&1)v[typ^1].push_back(l);
        else v[typ].push_back(l);
        u=(u+1)/2;
        if(typ)return u;
        else return r-l+1-u;
    };
    ret=(int)v[0].size();
    for(int i=2*k-1;i<n;i+=k){
        ret+=f(i,min(i+k-1,n-1));
    }
    return ret;
}

Compilation message

mushrooms.cpp: In lambda function:
mushrooms.cpp:57:47: error: operands to '?:' have different types 'bool' and 'std::vector<int>'
   57 |         vector<int>&g=(v[0].size()>v[1].size()?g=v[0],typ=0:g=v[1],typ=1);
      |                        ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~