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 <bits/stdc++.h>
#include "cave.h"
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef vector<int> vi;
typedef vector<ld> vd;
typedef vector<ll> vl;
#define pb push_back
#define f first
#define s second
int state[10000];
int door[10000];
int find(int cDoor, vi &cand) {
if (cand.size() == 1) {
return cand[0];
}
int oFClosed = tryCombination(state);
for (int i = 0; i < cand.size() / 2; i++) {
state[cand[i]] = 1;
}
int nFClosed = tryCombination(state);
for (int i = 0; i < cand.size() / 2; i++) {
state[cand[i]] = 0;
}
vi nCand;
if ((oFClosed == cDoor) == (nFClosed == cDoor)) {
for (int i = cand.size() / 2; i < cand.size(); i++) {
nCand.pb(cand[i]);
}
} else {
for (int i = 0; i < cand.size() / 2; i++) {
nCand.pb(cand[i]);
}
}
return find(cDoor, nCand);
}
int fPos(int x) {
state[x] = 0;
int fClosed = tryCombination(state);
if (fClosed == -1 || door[x] < fClosed) {
return 0;
} else {
return 1;
}
}
void exploreCave(int N) {
vi cand;
for (int i = 0; i < N; i++) {
cand.pb(i);
}
memset(state, 0, sizeof(state));
memset(door, 0, sizeof(door));
for (int doorI = 0; doorI < N; doorI++) {
int switchI = find(doorI, cand);
door[switchI] = doorI;
state[switchI] = fPos(switchI);
for (int j = 0; j < cand.size(); j++) {
if (cand[j] == switchI) {
cand.erase(cand.begin() + j);
break;
}
}
}
answer(state, door);
}
Compilation message (stderr)
cave.cpp: In function 'int find(int, vi&)':
cave.cpp:29:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < cand.size() / 2; i++) {
~~^~~~~~~~~~~~~~~~~
cave.cpp:35:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < cand.size() / 2; i++) {
~~^~~~~~~~~~~~~~~~~
cave.cpp:41:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = cand.size() / 2; i < cand.size(); i++) {
~~^~~~~~~~~~~~~
cave.cpp:45:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < cand.size() / 2; i++) {
~~^~~~~~~~~~~~~~~~~
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:78:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j = 0; j < cand.size(); j++) {
~~^~~~~~~~~~~~~
# | 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... |