Submission #474790

# Submission time Handle Problem Language Result Execution time Memory
474790 2021-09-19T19:34:25 Z robell Treasure (different grader from official contest) (CEOI13_treasure2) C++17
0 / 100
1 ms 460 KB
#pragma GCC optimize("O2")
#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();
}
vector<pair<int,int>> spots;
void grid(int bx, int by, int ux, int uy){
	cout << bx << " " << by << " " << ux << " " << uy << endl;
	int cells; cin >> cells;
	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){
	grid(1,1,N,N);
	set<pair<int,int>> ans;
	bool grid[N][N];
	for (int i=0;i<N;i++){
		ans.insert(spots[i]);
	}
	for (pair<int,int> b:ans){
		grid[b.first-1][b.second-1]=true;
	}
	for (int i=0;i<N;i++){
		for (int j=0;j<N;j++){
			cout << grid[i][j];
		}
		cout << endl;
	}
}

Compilation message

treasure.cpp: In function 'void setIO(std::string)':
treasure.cpp:19:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   19 |  freopen((f+".in").c_str(),"r",stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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+".out").c_str(),"w",stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 332 KB Execution killed with signal 11
2 Runtime error 1 ms 424 KB Execution killed with signal 11
3 Runtime error 1 ms 460 KB Execution killed with signal 11
4 Runtime error 1 ms 460 KB Execution killed with signal 11
5 Runtime error 1 ms 460 KB Execution killed with signal 11
6 Runtime error 1 ms 428 KB Execution killed with signal 11
7 Runtime error 1 ms 460 KB Execution killed with signal 11
8 Runtime error 1 ms 460 KB Execution killed with signal 11
9 Runtime error 1 ms 460 KB Execution killed with signal 11
10 Runtime error 1 ms 460 KB Execution killed with signal 11