QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#610843#8058. Binary vs Ternaryyimg#Compile Error//C++201.1kb2024-10-04 17:43:292024-10-04 17:43:30

Judging History

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

  • [2024-10-04 17:43:30]
  • 评测
  • [2024-10-04 17:43:29]
  • 提交

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 || B.lenght() == 1){
		cout << "-1\n";
		return;
	}
	if(A.length() == 1 && B.length() == 1){
		if(A == B) cout << "0\n";
		else 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());
		ans.emplace_back(A.length() - 1, A.length());
		A += '1';
		ans.emplace_back(A.length() - 1, A.length());
	}
	while(A.length() > lb){
		ans.emplace_back(A.length() - 1, A.length());
		ans.emplace_back(A.length(), A.length() + 1);
		A.pop_back();
	}
//	cout << A << "\n";
	for(int i = 0; i < lb; ++i){
		if(B[i] == '0'){
			ans.emplace_back(i, i + 1);
			ans.emplace_back(i + 1, i + 2);
		}
	}
	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

answer.code: In function ‘void work()’:
answer.code:9:33: error: ‘std::string’ {aka ‘class std::__cxx11::basic_string<char>’} has no member named ‘lenght’; did you mean ‘length’?
    9 |         if(A.length() == 1 || B.lenght() == 1){
      |                                 ^~~~~~
      |                                 length