QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#263456#7833. Binary StringzqsWA 19ms9112kbC++141.2kb2023-11-24 21:05:562023-11-24 21:05:57

Judging History

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

  • [2023-11-24 21:05:57]
  • 评测
  • 测评结果:WA
  • 用时:19ms
  • 内存:9112kb
  • [2023-11-24 21:05:56]
  • 提交

answer

#include <cstdio>
#include <cstring>
#include <random>
#include <ctime>

std::mt19937 rnd(time(NULL));
int adjust(int x) {
	if (x <= 0) x = 0;
	else x = 1;
	return x;
}
int sum[1005][1005], real[1005][1005], buc[1005], n = 1000, m = 500;
int a[1005],ans[1005];
bool vis[1005][1005];
inline bool ask(int l, int r) {
	if (!vis[l][r]) {
		printf("? %d %d\n", l, r);
		fflush(stdout);
		scanf("%d", &sum[l][r]);
		vis[l][r] = true;
	}
	return sum[l][r];
}

int main() {
	for (int len = m - 1; len <= m; ++ len) {
		for (int i = 1; i + len - 1 <= n; ++ i) {
			memset(buc, 0, sizeof buc);
			int j = i + len - 1, major = 0;
			for (int k = i; k < j; ++ k) {
				ask(i, k), ask(k + 1, j);
				int val = sum[i][k] + sum[k + 1][j];
				if (val <= j - i + 1) {
					++ buc[val];
					if (buc[major] < buc[val]) major = val;
				}
				if (buc[major] > 3) break;
			}
			real[i][j] = major;
		}
	}
	printf("! ");
	for (int i = 1; i <= n; ++ i) {
		if (i <= n - m + 1) printf("%d", ans[i] = adjust(real[i][i + m - 1] - real[i + 1][i + m - 1]));
		else printf("%d", ans[i] = adjust(real[i - m + 1][i] - real[i - m + 1][i - 1]));
	}
	puts("");
	fflush(stdout);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 19ms
memory: 9112kb

input:

1
250
1
360
1
120
4
192
4
248
0
248
3
78
3
42
2
57
9
136
5
247
4
448
5
246
14
385
6
245
7
420
8
324
9
242
1
317
0
143
1
250
2
249
1
249
2
7
3
249
8
249
3
194
2
151
3
329
4
247
11
70
14
246
6
245
1
250
1
78
2
249
4
12
2
197
2
27
2
249
3
248
0
31
1
249
2
249
1
61
1
424
1
249
2
132
2
118
2
248
5
16
7
8...

output:

? 1 1
? 2 499
? 1 2
? 3 499
? 1 3
? 4 499
? 1 4
? 5 499
? 1 5
? 6 499
? 1 6
? 7 499
? 1 7
? 8 499
? 1 8
? 9 499
? 1 9
? 10 499
? 1 10
? 11 499
? 1 11
? 12 499
? 1 12
? 13 499
? 1 13
? 14 499
? 1 14
? 15 499
? 1 15
? 16 499
? 1 16
? 17 499
? 1 17
? 18 499
? 1 18
? 19 499
? 2 2
? 3 500
? 2 3
? 4 500
?...

result:

wrong output format Unexpected end of file - token expected