#include "treasure.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#endif
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
void rec(int a, int b, int c, int d, int cnt) {
if (tie(a, b) == tie(c, d)) {
Report(a, b);
return;
}
if (rng() % 2 && a != c) {
int m = (a + c) / 2;
int x = countTreasure(a, b, m, d);
if (x) {
rec(a, b, m, d, x);
}
if (x < cnt) {
rec(m + 1, b, c, d, cnt - x);
}
} else {
int m = (b + d) / 2;
int x = countTreasure(a, b, c, m);
if (x) {
rec(a, b, c, m, x);
}
if (x < cnt) {
rec(a, m + 1, c, d, cnt - x);
}
}
}
void findTreasure (int n) {
rec(1, 1, n, n, countTreasure(1, 1, n, n));
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
612 KB |
Error - you cannot call countTreasure() after calling Report() |
2 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |
3 |
Incorrect |
0 ms |
508 KB |
Error - you cannot call countTreasure() after calling Report() |
4 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |
5 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |
6 |
Incorrect |
1 ms |
344 KB |
Error - you cannot call countTreasure() after calling Report() |
7 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |
8 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |
9 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |
10 |
Incorrect |
0 ms |
348 KB |
Error - you cannot call countTreasure() after calling Report() |