Submission #249549

# Submission time Handle Problem Language Result Execution time Memory
249549 2020-07-15T09:15:36 Z Kevin_Zhang_TW Treasure (different grader from official contest) (CEOI13_treasure2) C++17
0 / 100
1 ms 436 KB
#include<bits/stdc++.h>
#define pb emplace_back
using namespace std;
using ll = long long;
const int maxn = 110;
#include "treasure.h"
bool res[maxn][maxn];
int n;
int query(pair<int,int> LD, pair<int,int> UR) {
	return countTreasure(LD.first, LD.second, UR.first, UR.second);
}
void reply() {
	for (int i = 1;i <= n;++i)
		for (int j = 1;j <= n;++j)
			if (res[i][j])
				Report(i, j);
}
int pf[maxn][maxn];
void good() {
	int all = query({1,1}, {n,n});
//if (n > 20) return;
	for (int i = 1;i <= n;++i) {
		for (int j = 1;j <= n;++j) {
			int a, b, c, d;
			//a = mcnt({1, 1}, {i-1, n}) ,
			a = pf[i-1][n];
			b = (i > n-i ? all - query({1, 1}, {i, n}) : query({i+1, 1}, {n, n}))  ;//,
			c = (j > n-j ? query({1, 1}, {n, j-1}) : all - query({1, j}, {n, n})) ;
			d = (j > n-j ? all - query({1, 1}, {n, j}) : query({1, j+1}, {n, n}));
			//int a = query({1, 1}, {i-1, n}),
			//b = query({i+1,1}, {n, n}),
			//c = query({1, 1}, {n, j-1}),
			//d = query({1, j+1}, {n, n});

			res[i][j] = all
				- a - b - c - d
				//+ mcnt({1,1}, {i-1,j-1})
				//+ mcnt({1,j+1}, {i-1, n})
				+ query({1, 1}, {i-1, j-1})
				+ query({1, j+1}, {i-1, n})
				+ query({i+1,1}, {n,j-1})
				+ query({i+1,j+1}, {n, n})
				;
			pf[i][j] = pf[i-1][j] + pf[i][j-1] - pf[i-1][j-1] + res[i][j];
			//cout << i << ' ' << j << " : "  << res[i][j] << '\n';
		}
	}
}
void findTreasure (int n) {
	::n = n;
	good();
	reply();
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
2 Incorrect 1 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
3 Incorrect 0 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
4 Incorrect 1 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
5 Incorrect 0 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
6 Incorrect 1 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
7 Incorrect 0 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
8 Incorrect 0 ms 436 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
9 Incorrect 1 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0
10 Incorrect 0 ms 384 KB Error - check the range of the parameters of countTreasure() : r1 = 1, c1 = 1, r2 = 0, c2 = 0