# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
421124 | Berted | Monster Game (JOI21_monster) | C++17 | 115 ms | 4168 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "monster.h"
#include <random>
#include <iostream>
#include <algorithm>
#define vi vector<int>
#define uid uniform_int_distribution<int>
using namespace std;
/*
Observations:
- P_i will win against min(1, max(P_i, N - 2)) opponents.
- Sorting with the comparator will give us an array such that it can be divided into
consecutive groups of [x, x - 1, ....], [y, y - 1, y - 2....], ...
- There are no two consecutive groups of size 1
- Each consecutive group's size is at most log N + 1.
*/
int done[1001][1001];
inline bool ask(int a, int b)
{
bool ret = 0;
if (a > b) {swap(a, b); ret = 1;}
if (done[a][b] == -1) done[a][b] = Query(a, b);
return ret ^ done[a][b];
}
int n, P[1001], A[1001];
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |