Submission #669782

# Submission time Handle Problem Language Result Execution time Memory
669782 2022-12-07T09:18:52 Z Sorting Koala Game (APIO17_koala) C++17
15 / 100
13 ms 324 KB
#include "koala.h"
#include <iostream>
#include <numeric>
#include <vector>
#include <algorithm>
#include <utility>

using namespace std;

int minValue(int N, int W) {
    // TODO: Implement Subtask 1 solution here.
    // You may leave this function unmodified if you are not attempting this
    // subtask.
    return 0;
}

int maxValue(int n, int w) {
    static int b[103], r[103];
    vector<int> poss(n);
    iota(poss.begin(), poss.end(), 0);
    
    while(poss.size() > 1){
        int x = min(13, (int)n / (int)poss.size());
        fill(b, b + n, 0);
        for(int pos: poss)
            b[pos] = x;

        playRound(b, r);

        poss.clear();
        for(int i = 0; i < n; ++i)
            if(r[i] > x)
                poss.push_back(i);
    }
    return poss[0];
}

int greaterValue(int N, int W) {
    // TODO: Implement Subtask 3 solution here.
    // You may leave this function unmodified if you are not attempting this
    // subtask.
    return 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.
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 12 ms 316 KB Output is correct
2 Correct 12 ms 324 KB Output is correct
3 Correct 11 ms 324 KB Output is correct
4 Correct 13 ms 320 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 296 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 208 KB Output isn't correct
2 Halted 0 ms 0 KB -