Submission #944565

# Submission time Handle Problem Language Result Execution time Memory
944565 2024-03-13T00:31:57 Z Boycl07 Koala Game (APIO17_koala) C++17
37 / 100
51 ms 2904 KB
#include "koala.h"

#include <stdio.h>
#include <stdlib.h>
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

#define rep(i, n) for(int i = 1; (i) <= (n); ++i)
#define forn(i, l, r) for(int i = (l); i <= (r); ++i)
#define ford(i, r, l) for(int i = (r); i >= (l); --i)
#define FOR(i, n) for(int i = 0; i < (n); ++i)
#define FORD(i, n) for(int i = ((n) - 1); i >= 0; --i)





mt19937 rng(192929);
const int MaxN = 2e5 + 3;

int b[MaxN], r[MaxN];

int minValue(int N, int W) {
    int x = rng() % N;
    FOR(i, N) b[i] = 0;
    b[x] = 1;
    playRound(b, r);
    int pos_x = 0;
    while(r[pos_x]) ++pos_x;
    if(r[x] == 2) return pos_x;
    int y = rng() % N ;
    b[x] = 0;
    b[y] = 1;
    playRound(b, r);
    int pos_y;
    while(r[pos_y]) ++pos_y;
    if(r[y] == 2) return pos_y;
    if(pos_x == pos_y) return pos_x;

    return (rng() & 1) ? pos_x : pos_y;
}

int potential[MaxN];

int maxValue(int N, int W) {
    FOR(i, N) potential[i] = 1;
    while(true)
    {
        int cnt = 0;
        FOR(i, N)
            cnt += potential[i];
        if(cnt == 1)
            FOR(i, N) if(potential[i]) return i;
        if(cnt == 0) assert(0);
        FOR(i, N)
            if(potential[i])
                b[i] = W / cnt;
            else b[i] = 0;
        playRound(b, r);

        FOR(i, N  ) if(r[i] && potential[i]) potential[i] = 1;
        else potential[i] = 0;
    }

    return 0;
}

int greaterValue(int N, int W) {
    int lb = 1, rb = min(W / 2, 9);
    FOR(i, N) b[i] = 0;
    while(lb <= rb)
    {
        int mid = lb + rb >> 1;
        b[0] = b[1] = mid;
        //FOR(i, N) cout << b[i] << " "; cout << endl;
        playRound(b, r);
        int c1 = r[0] > b[0], c2 = r[1] > b[1];
        if(c1 ^ c2) return c1 < c2;
        if(c1) lb = mid + 1;
        else rb = mid - 1;
    }


    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.
    }
}

Compilation message

koala.cpp: In function 'int greaterValue(int, int)':
koala.cpp:76:22: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   76 |         int mid = lb + rb >> 1;
      |                   ~~~^~~~
koala.cpp: In function 'int minValue(int, int)':
koala.cpp:39:18: warning: 'pos_y' may be used uninitialized in this function [-Wmaybe-uninitialized]
   39 |     while(r[pos_y]) ++pos_y;
      |           ~~~~~~~^
# Verdict Execution time Memory Grader output
1 Correct 6 ms 2392 KB Output is correct
2 Correct 3 ms 2392 KB Output is correct
3 Correct 5 ms 2392 KB Output is correct
4 Correct 3 ms 2392 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 11 ms 2392 KB Output is correct
2 Correct 11 ms 2392 KB Output is correct
3 Correct 11 ms 2392 KB Output is correct
4 Correct 11 ms 2392 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 46 ms 2524 KB Output is correct
2 Correct 49 ms 2524 KB Output is correct
3 Correct 43 ms 2528 KB Output is correct
4 Correct 51 ms 2904 KB Output is correct
5 Correct 42 ms 2532 KB Output is correct
6 Correct 46 ms 2548 KB Output is correct
7 Correct 44 ms 2532 KB Output is correct
8 Correct 43 ms 2532 KB Output is correct
9 Correct 43 ms 2528 KB Output is correct
10 Correct 42 ms 2528 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -