QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#215871#6442. Secret of Tianqiu Valleyveg#WA 0ms4040kbC++141.0kb2023-10-15 14:06:112023-10-15 14:06:12

Judging History

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

  • [2023-10-15 14:06:12]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:4040kb
  • [2023-10-15 14:06:11]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
int n;
char s[100005], t[100005];
int ans[100005], flag;
void f(int x) {
	t[x == 1 ? n : x - 1] ^= 1;
	t[x] ^= 1;
	t[x == n ? 1 : x + 1] ^= 1;
}
void check(int A, int B) {
	memcpy(t + 1, s + 1, n);
	vector<int> ans;
	int cnt = 0;
	if (A) f(n - 1), ans.push_back(n - 1);
	if (B) f(n), ans.push_back(n);
	for (int i = 1; i <= n - 2; ++i) {
		if (!t[i == 1 ? n : i - 1]) {
			f(i);
			ans.push_back(i);
		}
	}
	for (int i = 1; i <= n; ++i) if (!t[i]) return;
	printf("%d\n", ans.size());
	for (int i = 0; i + 1 < ans.size(); ++i) printf("%d ", ans[i]);
	printf("%d\n", ans.back());
	flag = 1;
}
int main() {
	int T;
	cin >> T;
	while (T--) {
		scanf("%d%s", &n, s + 1);
		int p = 1;
		for (int i = 1; i <= n; ++i) p &= (s[i] ^= 0x30);
		if (p) {
			puts("2\n1 1");
			continue;
		}
		flag = 0;
		if (!flag) check(0, 0);
		if (!flag) check(1, 0);
		if (!flag) check(0, 1);
		if (!flag) check(1, 1);
		if (!flag) puts("0");
	}
	return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 4040kb

input:

2
5
00000
3
001

output:

5
4 5 1 2 3
0

result:

wrong answer ignite ignited torch (test case 1)