#include "treasure.h"
#include <bits/stdc++.h>
using namespace std;
int ask(int r1, int c1, int r2, int c2)
{
if (r1 > r2 || c1 > c2)
{
return 0;
}
return countTreasure(r1, c1, r2, c2);
}
const int N = 100 + 7;
int ul[N][N];
int ur[N][N];
int dl[N][N];
int dr[N][N];
void findTreasure(int n)
{
int total = ask(1, 1, n, n);
int half = (n + 1) / 2;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
ul[i][j] = ask(1, 1, i, j); /// pe [half + 1, n] and [half + 1, n]
}
}
for (int i = half + 1; i <= n; i++)
{
for (int j = 1; j <= half; j++)
{
ur[i][j] = ask(1, j, i, n); /// pe [half + 1, n] and [1, half]
}
}
for (int i = 1; i <= half; i++)
{
for (int j = half + 1; j <= n; j++)
{
dl[i][j] = ask(i, 1, n, j); /// pe [1, half] and [half + 1, n]
}
}
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
/// dr[i][j] = ask(i, j, n, n); /// pe [1, half] and [1, half]
}
}
for (int i = half + 1; i <= n; i++)
{
for (int j = 1; j <= half - 1; j++)
{
ul[i][j] = ul[i][n] - ur[i][j + 1];
}
}
for (int i = 1; i <= half - 1; i++)
{
for (int j = half + 1; j <= n; j++)
{
ul[i][j] = ul[n][j] - dl[i + 1][j];
}
}
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
{
int val_ij = ul[i][j] - ul[i - 1][j] - ul[i][j - 1] + ul[i - 1][j - 1];
if (val_ij)
{
Report(i, j);
}
}
}
}
Compilation message
treasure.cpp: In function 'void findTreasure(int)':
treasure.cpp:23:7: warning: unused variable 'total' [-Wunused-variable]
23 | int total = ask(1, 1, n, n);
| ^~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
1 ms |
212 KB |
Output is partially correct - N = 5, K = 522, score = 8 |
2 |
Partially correct |
0 ms |
340 KB |
Output is partially correct - N = 10, K = 8926, score = 1 |
3 |
Partially correct |
0 ms |
340 KB |
Output is partially correct - N = 15, K = 46307, score = 1 |
4 |
Partially correct |
1 ms |
340 KB |
Output is partially correct - N = 16, K = 60193, score = 1 |
5 |
Partially correct |
1 ms |
340 KB |
Output is partially correct - N = 55, K = 8721947, score = 1 |
6 |
Partially correct |
1 ms |
340 KB |
Output is partially correct - N = 66, K = 18135118, score = 1 |
7 |
Partially correct |
1 ms |
340 KB |
Output is partially correct - N = 77, K = 33660630, score = 1 |
8 |
Partially correct |
1 ms |
340 KB |
Output is partially correct - N = 88, K = 57507913, score = 1 |
9 |
Partially correct |
1 ms |
468 KB |
Output is partially correct - N = 99, K = 92217953, score = 1 |
10 |
Partially correct |
1 ms |
468 KB |
Output is partially correct - N = 100, K = 96011251, score = 1 |