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 "cave.h"
#include <bits/stdc++.h>
using namespace std;
int determine[5000];
int correspond[5000];
vector<int> undone;
int undones;
void exploreCave(int N) {
for (int i = 0; i < N; i++)
determine[i] = rand() % 2, correspond[i] = i, undone.push_back(i);
undones = N;
while (undones > 0)
{
int pivot = tryCombination(determine);
int pivot_point = 0;
int r = N;
for (int p : undone)
{
int o = correspond[p];
determine[correspond[o]] = !determine[correspond[o]];
int t = tryCombination(determine);
if (t != pivot)
{
undone.erase(undone.begin() + p), undones--;
correspond[undone[p]] = t;
if (t > pivot)
pivot_point = p;
}
else
correspond[undone[p]] = r--;
determine[correspond[o]] = !determine[correspond[o]];
}
determine[correspond[pivot_point]] = !determine[correspond[pivot_point]];
}
answer(determine, correspond);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |