QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#702888#9537. Chinese Chessucup-team5657#RE 491ms4572kbC++204.1kb2024-11-02 16:44:562024-11-02 16:44:58

Judging History

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

  • [2024-11-02 16:44:58]
  • 评测
  • 测评结果:RE
  • 用时:491ms
  • 内存:4572kb
  • [2024-11-02 16:44:56]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define _rep(i_,a_,b_) for(int i_ = (a_); i_ <= (b_); ++i_)
#define mid ((L+R) >> 1)
#define multiCase() int testCnt = in(); _rep(curCase,1,testCnt)
#ifdef ONLINE_JUDGE
#define debug(...) 0
#else
#define debug(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
#endif
using ll = long long;
using pii = pair<int,int>;
using ull = unsigned long long;
const int inf = 0x3f3f3f3f;
const ll inf64 = 0x3f3f3f3f3f3f3f3fll;
int in(void) { int x; scanf("%d", &x); return x; } ll inl(void) { ll x; scanf("%lld", &x); return x; }
void out(int x) { printf("%d ", x); } void outln(int x) { printf("%d\n", x); }
void out(unsigned x) { printf("%u ", x); } void outln(unsigned x) { printf("%u\n", x); }
void out(ll x) { printf("%lld ", x); } void outln(ll x) { printf("%lld\n", x); }
void out(ull x) { printf("%llu ", x); } void outln(ull x) { printf("%llu\n", x); }
template<typename T, typename U> void chkmax(T &a, const U &b) { if(b > a) a = b; } 
template<typename T, typename U> void chkmin(T &a, const U &b) { if(b < a) a = b; } 
bitset<540> F[90][90];
int vis[90][90];
vector<pii> mov[6];
bool check(int x, int y) { return 0 <= x && x <= 9 && 0 <= y && y <= 8; }
void dfs(int x, int y, int t) {
	for(auto &[dx, dy] : mov[t]) {
		int nx = x + dx, ny = y + dy; 
		if(check(nx, ny) && !(t == 5 && !dx && x <= 4) && vis[nx][ny] > vis[x][y]) {
			vis[nx][ny] = vis[x][y] + 1;
			dfs(nx, ny, t);
		}
	}
}
int flg;
int dfs(bitset<540> st) {
	if(st.count() == 1) return 0;
	_rep(t,0,5) {
		int cnt = 0;
		_rep(i,t * 90, (t + 1) * 90 - 1) cnt += st[i];
		if(cnt == st.count()) return 0;
	}
	vector<pii> S;
	_rep(i,0,89) {
		int mx = 0; _rep(j,0,89) chkmax(mx, (st & F[i][j]).count());
		if(mx < st.count()) S.emplace_back(mx, i);
	}
	sort(S.begin(), S.end());
	int mn = inf;
	for(int i = 0; i < min(int(S.size()), 5); ++i) { int u = S[i].second;
		int mx = 0;
		_rep(j,0,89) if((st & F[u][j]).count()) chkmax(mx, dfs(st & F[u][j]));
		chkmin(mn, mx);
	}
	return mn + 1;
}
void DOIT(bitset<540> st) {
	_rep(t,0,5) {
		int cnt = 0;
		_rep(i,t * 90, (t + 1) * 90 - 1) cnt += st[i];
		if(cnt == st.count()) {
			printf("! ");
			if(t == 0) puts("J");
			if(t == 1) puts("M");
			if(t == 2) puts("S");
			if(t == 3) puts("X");
			if(t == 4) puts("C");
			if(t == 5) puts("B");
			fflush(stdout);
			exit(0);
		}
	}
	vector<pii> S;
	_rep(i,0,89) {
		int mx = 0; _rep(j,0,89) chkmax(mx, (st & F[i][j]).count());
		if(mx < st.count()) S.emplace_back(mx, i);
	}
	sort(S.begin(), S.end());
	int mn = inf;
	for(int i = 0; i < min(int(S.size()), 5); ++i) { int u = S[i].second;
		int mx = 0;
		_rep(j,0,89) if((st & F[u][j]).count()) chkmax(mx, dfs(st & F[u][j]));
		S[i].first = mx;
		chkmin(mn, mx);
	}
	for(int i = 0; i < min(int(S.size()), 5); ++i) if(S[i].first == mn) {
		printf("? %d %d\n", S[i].second / 9, S[i].second % 9); fflush(stdout);
		int u = in();
		DOIT(st & F[S[i].second][u == -1 ? 89 : u]); 
	}
}
int main() { 
	mov[0] = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}}; //J
	mov[1] = {{1, 2}, {-1, 2}, {1, -2}, {-1, -2}, {2, 1}, {-2, 1}, {2, -1}, {-2, -1}}; //M
	mov[2] = {{1, 1}, {1, -1}, {-1, 1}, {-1, -1}}; //S
	mov[3] = {{2, 2}, {-2, 2}, {2, -2}, {-2, -2}}; //X
	_rep(i,-9,9) if(i) mov[4].emplace_back(i, 0), mov[4].emplace_back(0, i); //C
	mov[5] = {{1, 0}, {0, 1}, {0, -1}}; //B
	_rep(t,0,5) _rep(i,0,9) _rep(j,0,8) {
		_rep(x,0,9) _rep(y,0,8) vis[x][y] = 89;
		vis[i][j] = 0, dfs(i, j, t);
		_rep(x,0,9) _rep(y,0,8) F[x * 9 + y][vis[x][y]][t * 90 + i * 9 + j] = 1;
	}
	bitset<540> st;
	int n = in();
	_rep(i,1,n) {
		int x = in(), y = in(), z = x * 9 + y;
		_rep(j,0,5) st[j * 90 + z] = 1;
	}
	outln(dfs(st));
	DOIT(st);
	return 0;
}

/* 
a list of keywords
clear empty push_back pop_back push pop top front back
emplace_back emplace push_front pop_front insert erase
find count set reset bitset map vector string multiset
first second iterator prev next deque multimap reverse
sort begin end list modify query init check calc prime
putchar getchar puts scanf printf max min swap replace
make_pair make_tuple numeric_limits auto function null
*/

詳細信息

Test #1:

score: 100
Accepted
time: 398ms
memory: 4240kb

input:

1
9 0
8

output:

1
? 1 8
! S

result:

ok number is guessed.

Test #2:

score: 0
Accepted
time: 407ms
memory: 4280kb

input:

4
2 1
2 3
2 5
2 7
12
9

output:

2
? 7 0
? 0 0
! J

result:

ok number is guessed.

Test #3:

score: 0
Accepted
time: 400ms
memory: 4284kb

input:

1
2 4
-1
1

output:

2
? 0 0
? 0 2
! X

result:

ok number is guessed.

Test #4:

score: 0
Accepted
time: 402ms
memory: 4272kb

input:

1
5 0
6

output:

1
? 3 6
! S

result:

ok number is guessed.

Test #5:

score: 0
Accepted
time: 402ms
memory: 4564kb

input:

1
6 0
6

output:

1
? 0 2
! S

result:

ok number is guessed.

Test #6:

score: 0
Accepted
time: 407ms
memory: 4572kb

input:

2
7 7
1 0
5
14

output:

2
? 7 2
? 0 0
! J

result:

ok number is guessed.

Test #7:

score: 0
Accepted
time: 437ms
memory: 4360kb

input:

5
8 6
1 3
0 5
2 4
0 2
12
2

output:

2
? 8 6
? 0 0
! J

result:

ok number is guessed.

Test #8:

score: 0
Accepted
time: 426ms
memory: 4280kb

input:

6
0 7
1 6
2 8
0 5
7 6
8 2
14
-1

output:

2
? 8 1
? 0 0
! B

result:

ok number is guessed.

Test #9:

score: 0
Accepted
time: 444ms
memory: 4356kb

input:

7
6 5
3 0
3 2
4 1
4 0
2 4
5 2
11
4

output:

2
? 8 7
? 0 0
! J

result:

ok number is guessed.

Test #10:

score: 0
Accepted
time: 439ms
memory: 4280kb

input:

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

output:

2
? 7 4
? 0 1
! J

result:

ok number is guessed.

Test #11:

score: 0
Accepted
time: 431ms
memory: 4212kb

input:

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

output:

2
? 8 2
? 0 0
! J

result:

ok number is guessed.

Test #12:

score: 0
Accepted
time: 491ms
memory: 4288kb

input:

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

output:

2
? 9 8
? 0 0
! J

result:

ok number is guessed.

Test #13:

score: 0
Accepted
time: 446ms
memory: 4272kb

input:

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

output:

2
? 7 2
? 0 0
! J

result:

ok number is guessed.

Test #14:

score: -100
Runtime Error

input:

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

output:

3
? 9 4

result: