QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#756205#8058. Binary vs TernaryKalimos#WA 1ms3504kbC++231.6kb2024-11-16 19:21:222024-11-16 19:21:23

Judging History

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

  • [2024-11-16 19:21:23]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3504kb
  • [2024-11-16 19:21:22]
  • 提交

answer

#define _CRT_SECURE_NO_WARNINGS 1
#pragma warning(disable:6031)
#include<bits/stdc++.h>
using namespace std;
#define ll long long

string a,b;
queue<pair<int, int>>q;
map<string, int>m;
vector<int> dp(100030);

void ztoo(int x)
{
	q.push({x-1,x});
	//a[x] = '1';
}
void otoz(int x)
{
	q.push({ x - 1,x });
	q.push({ x,x + 1 });
	//a[x] = '0';


}
void p1(int num)
{
	while (num--)
	{
		q.push({ 1,3 });
		q.push({ 2,3 });
		//a.push_back('1');
	}


}
void m1(int num)
{
	num++;
	int len = a.size();
	int i = 0;

	while(num--)
	{
		i++;
		otoz(len - i);
		//a.pop_back();
	
	}
	q.push({ len - i,len-1 });
	ztoo(len -i);
	



}
void write()
{
	cout << q.size() << endl;
	while (!q.empty())
	{
		auto tmp = q.front();
		q.pop();
		cout << tmp.first << " " << tmp.second << endl;



	}



}


void solve()
{
	while (!q.empty())q.pop();
	cin >> a >> b;

	if (a.size() == 1 || b.size() == 1)
	{
		if (a != b)
		{
			cout << -1 << endl;
			return;


		}
		else
		{
			cout << 0 << endl;
			return;
		}


	}
	if (a == b)
	{

		cout << 0 << endl;
		return;

	}
	a = 'x' + a;
	b = 'x' + b;
	int len = a.size();
	for (int i = 1;i < len;i++)
	{
		if (a[i] == '0')ztoo(i);
	}
	if (a.size() > b.size())
	{
		int num = a.size() - b.size();
		m1(num);



	}
	else if (a.size() < b.size())
	{
		int num = b.size() - a.size();
		p1(num);


	}
	 len = b.size();
	for (int i = 1;i < len;i++)
	{
		
		 if (b[i] == '0')otoz(i);


	}

	write();



	return;
}



int main()
{
	int tt;
	cin >> tt;
	while (tt--)
		solve();





}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3504kb

input:

3
1
111
110110
1101010
1111
111111

output:

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

result:

ok Haitang Suki (3 test cases)

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3500kb

input:

1000
11100
111
1
11110
10001
10
1011
1111
10
1110
1100
11
11010
11
110
11
1
10001
10110
10
10
11111
10000
1001
10
1
11
10111
11
10
1
100
11
10100
1
10
101
11
1100
110
11
1110
1
1001
1
11111
10
10010
10
11001
110
1010
10011
1110
10100
1001
1001
101
100
1
1001
11
101
11
101
1001
1
1
1011
1
10
10
1011
...

output:

10
3 4
4 5
4 5
5 6
3 4
4 5
2 3
3 4
3 5
2 3
-1
15
1 2
2 3
3 4
4 5
5 6
3 4
4 5
2 3
3 4
1 2
2 3
2 5
1 2
1 2
2 3
1
1 2
7
1 2
1 3
2 3
1 3
2 3
3 4
4 5
10
2 3
3 4
3 4
4 5
2 3
3 4
1 2
2 3
2 4
1 2
12
2 3
4 5
4 5
5 6
3 4
4 5
2 3
3 4
1 2
2 3
2 5
1 2
7
2 3
2 3
3 4
1 2
2 3
2 3
1 2
-1
14
1 2
4 5
4 5
5 6
3 4
4 5
2...

result:

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