Submission #474796

# Submission time Handle Problem Language Result Execution time Memory
474796 2021-09-19T20:28:45 Z robell Treasure (different grader from official contest) (CEOI13_treasure2) C++17
0 / 100
1 ms 372 KB
#pragma GCC optimize("O2")
#include <treasure.h>
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag, tree_order_statistics_node_update> indexed_set;
typedef long long ll;
#define pb push_back
#define eb emplace_back
#define countbits __builtin_popcount
#define beg0 __builtin_clz
#define terminal0 __builtin_ctz
#define mod 1e9+7
void setIO(){
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
}
void setIO(string f){
	freopen((f+".in").c_str(),"r",stdin);
	freopen((f+".out").c_str(),"w",stdout);
	setIO();
}
int n;
vector<pair<int,int>> spots;
void grid(int bx, int by, int ux, int uy){
	int cells=countTreasure(bx,by,ux,uy);
	if (cells==0) return;
	if (bx>=ux && by>=uy){
		spots.pb({bx,by});return;
	}
	if ((bx-ux)%2==0){
		grid(bx,by,(ux+bx)/2,(uy+by)/2);//top left subgrid
		grid((ux+bx)/2,by,ux,(uy+by)/2);//top right subgrid
		grid(bx,(uy+by)/2,(ux+bx)/2,uy);//bottom left subgrid
		grid((ux+bx)/2,(uy+by)/2,ux,uy);//bottom right subgrid
	}else{
		grid(bx,by,(ux+bx)/2,(uy+by)/2);
		grid((ux+bx)/2+1,by,ux,(uy+by)/2);
		grid(bx,(uy+by)/2+1,(ux+bx)/2,uy);
		grid((ux+bx)/2+1,(uy+by)/2+1,ux,uy);
	}
}
void findTreasure(int N){
	n=N;
	int grid[N][N];
	for (int i=0;i<N;i++) for (int j=0;j<N;j++) grid[i][j]=1e9;
	for (int i=N-1;i>=0;i--){
		for (int j=N-1;j>=0;j--){
			grid[i][j]=countTreasure(1,1,i+1,j+1);
		}
	}
	for (int i=0;i<N;i++){
		for (int j=0;j<N;j++){
			if (j){
				if (grid[i][j-1]==grid[i][j]-1){
					Report(i+1,j+1);
				}
			}
		}
	}
}

Compilation message

treasure.cpp: In function 'void setIO(std::string)':
treasure.cpp:20:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   20 |  freopen((f+".in").c_str(),"r",stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
treasure.cpp:21:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |  freopen((f+".out").c_str(),"w",stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Error - no treasure at (r, c) : r = 2, c = 3
2 Incorrect 0 ms 204 KB Error - no treasure at (r, c) : r = 2, c = 2
3 Incorrect 1 ms 204 KB Error - no treasure at (r, c) : r = 2, c = 5
4 Incorrect 0 ms 204 KB Error - no treasure at (r, c) : r = 2, c = 7
5 Incorrect 1 ms 332 KB Error - no treasure at (r, c) : r = 2, c = 7
6 Incorrect 1 ms 332 KB Error - no treasure at (r, c) : r = 2, c = 3
7 Incorrect 1 ms 332 KB Error - not all of the treasure cells have been reported
8 Incorrect 1 ms 332 KB Error - not all of the treasure cells have been reported
9 Incorrect 1 ms 332 KB Error - no treasure at (r, c) : r = 2, c = 7
10 Incorrect 1 ms 372 KB Error - no treasure at (r, c) : r = 2, c = 2