QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#610769#8058. Binary vs Ternaryyimg#WA 0ms3600kbC++20807b2024-10-04 17:20:312024-10-04 17:20:33

Judging History

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

  • [2024-10-04 17:20:33]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3600kb
  • [2024-10-04 17:20:31]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
using i64 = long long;
void work()
{
	string A, B;
	cin >> A >> B;
	int lb = B.length();
	if(A.length() == 1){
		cout << "-1\n";
		return;
	}
	vector<pair<int, int>> ans;
	for(int i = 0; i < A.size(); ++i){
		if(A[i] == '0') ans.emplace_back(i, i + 1), A[i] = '1';
	}
	while(A.length() < lb){
		ans.emplace_back(A.length() - 1, A.length());
		A += '1';
		ans.emplace_back(A.length() - 1, A.length());
	}
	for(int i = 0; i < lb; ++i){
		if(B[i] == '0'){
			ans.emplace_back(i, i + 1);
			ans.emplace_back(i + 1, i + 1);
		}
	}
	cout << ans.size() << "\n";
	for(auto i : ans){
		cout << i.first << " " << i.second << "\n";
	}
}

int main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	int t;
	cin >> t;
	while(t--)
		work();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
1
111
110110
1101010
1111
111111

output:

-1
10
2 3
5 6
5 6
6 7
2 3
3 3
4 5
5 5
6 7
7 7
4
3 4
4 5
4 5
5 6

result:

wrong answer (l,r) is invalid (test case 2)