제출 #546799

#제출 시각아이디문제언어결과실행 시간메모리
546799LucaDantasCounting Mushrooms (IOI20_mushrooms)C++17
80.43 / 100
13 ms592 KiB
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;

mt19937 rng(random_device{}());

vector<int> color[2];

int count_mushrooms(int N) {
    int cnt[2]{};
    color[0] = {0};
    
    vector<int> unknown(N-1);
    iota(unknown.begin(), unknown.end(), 1);
    shuffle(unknown.begin(), unknown.end(), rng);
    
    // umas queries qqr aleatorias ai
    // for(int i = 0; i < 10; i++) {
    //     vector<int> qr; qr.resize()
    // }
    vector<int> qr(N);
    iota(qr.begin(), qr.end(), 0);
    use_machine(qr);

    while(unknown.size()) {
        int usar = color[1].size() > color[0].size(); // escolho o grupo que tem mais gente pra usar
        int sz = color[usar].size();

        vector<int> qr;
        for(int i = 0; i < sz && unknown.size(); i++, unknown.pop_back())
            qr.push_back(color[usar][i]), qr.push_back(unknown.back());

        int resp = use_machine(qr);

        color[usar ^ (resp&1)].push_back(qr.back());

        cnt[usar^1] += resp/2;
        cnt[usar] += (qr.size() / 2 - 1) - resp/2;
    }

    return cnt[0] + color[0].size();
}
#Verdict Execution timeMemoryGrader output
Fetching results...