Submission #1028470

# Submission time Handle Problem Language Result Execution time Memory
1028470 2024-07-20T01:42:35 Z vjudge1 New Home (APIO18_new_home) C++17
Compilation error
0 ms 0 KB
#include "koala.h"
#include<bits/stdc++.h>
using namespace std;
int minValue(int N, int W) {
    int me[100]{1},you[100];
    playRound(me,you);
    for(int i=0;i<N;i++)
        if(you[i]==0)
            return i;
    return 0;
}

int maxValue(int N, int W) {
    int me[100],you[100];
    vector<int>theposs(N);
    iota(theposs.begin(),theposs.end(),0);
    while(theposs.size()>1){
        memset(me,0,sizeof me);
        for(auto i:theposs)
            me[i]=W/theposs.size();
        playRound(me,you);
        vector<int>theposs2;
        for(auto i:theposs)
            if(you[i])theposs2.push_back(i);
        theposs=theposs2;
    }
    return theposs[0];
}

int greaterValue(int N, int W) {
    int me[100]{1,1},you[100];
    playRound(me,you);
    return !you[0];
}

void allValues(int N, int W, int *P) {
    if (W == 2*N) {
        // TODO: Implement Subtask 4 solution here.
        // You may leave this block unmodified if you are not attempting this
        // subtask.
    } else {
        // TODO: Implement Subtask 5 solution here.
        // You may leave this block unmodified if you are not attempting this
        // subtask.
    }
}

Compilation message

new_home.cpp:1:10: fatal error: koala.h: No such file or directory
    1 | #include "koala.h"
      |          ^~~~~~~~~
compilation terminated.