QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#24142#2615. Surround the Catgalaxias#WA 3ms3728kbC++113.0kb2022-03-26 17:18:152022-04-30 05:08:10

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-04-30 05:08:10]
  • 评测
  • 测评结果:WA
  • 用时:3ms
  • 内存:3728kb
  • [2022-03-26 17:18:15]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;

int dx[] = {0,1,-1,0,1,-1};
int dy[] = {1,0,0,-1,1,-1};


int ddx[] = {1,2,1,-1,-2,-1};
int ddy[] = {-1,1,2,1,-1,-2};

map<pair<int,int>, int> mp;

bool isedge(int x, int y) {
	if(x == 9) {
		for(int i=0;i<=9;i++) {
			if(y == i) return true;
		}
	}
	
	if(y == 9) {
		for(int i=0;i<=9;i++) {
			if(x == i) return true;
		}
	}
	
	for(int i=0;i<=9;i++) {
		if(x == 0-i && y == 9-i) return true;
	}
	
	for(int i=0;i<=9;i++) {
		if(x == 0+i && y == -9+i) return true;
	}
	
	if(x == -9) {
		for(int i=0;i<=9;i++) {
			if(y == -i) return true;
		}
	}
	
	if(y == -9) {
		for(int i=-9;i<=0;i++) {
			if(x == i) return true;
		}
	}
	
	return false;

}

bool dfs1(int x, int y) {
	for(int i=0;i<6;i++) {
		int xx = x+dx[i];
		int yy = y+dy[i];
		if(isedge(xx,yy)) return true;
	}
	return false;
}

bool dfs2(int x, int y) {
	for(int i=0;i<6;i++) {
		int xx = x+dx[i];
		int yy = y+dy[i];
		if(dfs1(xx,yy)) return true;
	}
	return false;
}

pair<int,int> findvis() {
	for(int i=0;i<=9;i++) {
		if(!mp.count(make_pair(9,i))) return make_pair(9,i);
	}
	for(int i=0;i<=9;i++) {
		if(!mp.count(make_pair(i,9))) return make_pair(i,9);
	}
	for(int i=0;i<=9;i++) {
		if(!mp.count(make_pair(0-i,9-i))) return make_pair(0-i,9-i);
	}
	for(int i=0;i<=9;i++) {
		if(!mp.count(make_pair(-9,-i))) return make_pair(-9,-i);
	}
	for(int i=0;i<=9;i++) {
		if(!mp.count(make_pair(-9+i,-9))) return make_pair(-9+i,-9);
	}
	for(int i=0;i<=9;i++) {
		if(!mp.count(make_pair(0+i,-9+i))) return make_pair(0+i,-9+i);
	}
}

pair<int,int> query(int x, int y) {
	printf("%lld %lld\n", x,y);
	fflush(stdout);
	mp[make_pair(x,y)] = 1;
	int xx,yy;
	cin >> xx >> yy;
	return make_pair(xx,yy);
}

signed main() {
	int qw, wq;
	pair<int,int> cur;
	cin >> wq >> qw;
	query(9,1);
	query(8,9);
	query(-1,8);
	query(-9,-1);
	query(-8,-9);
	cur = query(1,-8);
	for(int i=0;i<48;i++) {
		if(dfs1(cur.first,cur.second)) {
			int ok = 0;
			for(int i=0;i<6;i++) {
				int xx = cur.first+dx[i];
				int yy = cur.second+dy[i];
				if(isedge(xx,yy) && !mp.count(make_pair(xx,yy))) {

					query(xx,yy);
					ok=1;
					break;
				}
			} 
			if(!ok) {
				pair<int,int> tmp = findvis();

				query(tmp.first,tmp.second);
			}
		}else if(dfs2(cur.first,cur.second)) {
			int ok = 0;
			for(int i=0;i<6;i++) {
				int xx = cur.first+ddx[i];
				int yy = cur.second+ddy[i];
				if(isedge(xx,yy) && !mp.count(make_pair(xx,yy))) {

					query(xx,yy);
					ok=1;
					break;
				}
			}
			if(!ok) {
				pair<int,int> tmp = findvis();

				query(tmp.first,tmp.second);
			}
		}else {
				pair<int,int> tmp = findvis();

				query(tmp.first,tmp.second);
		}
	}

	
}
/*
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
0 0
*/


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 3ms
memory: 3728kb

input:

0 0
1 0
2 1
3 2
4 3
5 4
6 5
7 6
8 6
9 6

output:

9 1
8 9
-1 8
-9 -1
-8 -9
1 -8
9 0
9 2
9 3
9 4

result:

wrong answer wrong answer  Cat reaches the boundary 9 6