#include "treasure.h"
#include <vector>
using namespace std;
struct pos { int r, c; };
vector<pos> vt;
int psum[101][101];
// 1 2
// 3 4
void findTreasure(int N) {
pos temp;
// 4사분면
for (int i = N; i > N / 2; i--)
for (int j = N; j > N / 2; j--)
psum[i][j] = countTreasure(1, 1, i, j);
// 2사분면
for (int i = 1; i <= N / 2; i++)
for (int j = N / 2 + 1; j <= N; j++)
psum[i][j] = psum[N][j] - countTreasure(i+1, 1, N, j);
// 3사분면
for (int i = N / 2 + 1; i <= N; i++)
for (int j = 1; j <= N / 2; j++)
psum[i][j] = psum[i][N] - countTreasure(1, j+1, i, N);
// 1사분면
for (int i = 1; i <= N / 2; i++)
for (int j = 1; j <= N / 2; j++)
psum[i][j] = psum[i][N] + psum[N][j] - psum[N][N] + countTreasure(i+1, j+1, N, N);
//for (int i = 1; i <= N; i++) {
// for (int j = 1; j <= N; j++) {
// cout << psum[i][j] << " ";
// }
// cout << endl;
//}
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= N; j++) {
int tmp;
if (i == 1 && j == 1) tmp = psum[i][j];
else if (i == 1 && j != 1) tmp = psum[i][j] - psum[i][j - 1];
else if (i != 1 && j == 1) tmp = psum[i][j] - psum[i - 1][j];
else tmp = psum[i][j] - psum[i - 1][j] - psum[i][j - 1] + psum[i - 1][j - 1];
if (tmp == 1) {
temp.r = i; temp.c = j;
vt.push_back(temp);
}
}
}
for (int i = 0; i < vt.size(); i++)
Report(vt[i].r, vt[i].c);
return;
}
Compilation message
grader.c: In function 'int main()':
grader.c:63:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
my_assert(strlen(A[i]+1) == N, "each line of the map must contain N zeroes or ones (before loop)");
^
treasure.cpp: In function 'void findTreasure(int)':
treasure.cpp:52:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < vt.size(); i++)
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
376 KB |
Output is correct - N = 5, K = 289, score = 10 |
2 |
Correct |
1 ms |
376 KB |
Output is correct - N = 10, K = 4475, score = 10 |
3 |
Correct |
1 ms |
536 KB |
Output is correct - N = 15, K = 22289, score = 10 |
4 |
Correct |
1 ms |
536 KB |
Output is correct - N = 16, K = 28928, score = 10 |
5 |
Correct |
2 ms |
536 KB |
Output is correct - N = 55, K = 4005289, score = 10 |
6 |
Correct |
2 ms |
536 KB |
Output is correct - N = 66, K = 8305803, score = 10 |
7 |
Correct |
1 ms |
656 KB |
Output is correct - N = 77, K = 15383161, score = 10 |
8 |
Correct |
2 ms |
784 KB |
Output is correct - N = 88, K = 26244416, score = 10 |
9 |
Correct |
2 ms |
784 KB |
Output is correct - N = 99, K = 42032201, score = 10 |
10 |
Correct |
2 ms |
784 KB |
Output is correct - N = 100, K = 43760000, score = 10 |