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;
const int MAX=1e5;
void exploreCave(int N)
{
/* ... */
int arr[MAX],other[MAX];
for(int A=0;A<N;A++)
arr[A]=0,other[A]=0;
for(int A=0;A<N;A++)
{
other[A]=1;
arr[A]=tryCombination(other);
other[A]=0;
}
answer(other,arr);
return ;
}
# | 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... |