【发布时间】:2020-05-10 18:25:00
【问题描述】:
我试图解决hackerrank问题Between Two Sets。在下面代码的getTotalX()函数中,程序的输出总是空的(当我尝试使用cin输出时,计数值总是为零) . 看不懂问题,是不是count变量的声明有问题?
#include <bits/stdc++.h>
using namespace std;
string ltrim(const string &);
string rtrim(const string &);
vector<string> split(const string &);
/*
* Complete the 'getTotalX' function below.
*
* The function is expected to return an INTEGER.
* The function accepts following parameters:
* 1. INTEGER_ARRAY a
* 2. INTEGER_ARRAY b
*/
int getTotalX(vector<int> a, vector<int> b) {
sort(a.begin(),a.end());
sort(b.begin(),b.end());
int n1 = a.back();
int n2 = b.front();
cout<<n1<<n2<<endl;
int count=0;
for(int i=n1;i<=n2;i+=n1)
{
int flag = 1;
for(int j=0;j<a.size();j++ )
{
if (i % a[j])
{
flag =0;
break;
}
}
if (flag)
{
for(int j=0;j<b.size();i++)
{
if (b[j]%i)
{
flag = 0;
break;
}
}
}
if (flag)
count++;
}
return count;
}
int main()
{
ofstream fout(getenv("OUTPUT_PATH"));
string first_multiple_input_temp;
getline(cin, first_multiple_input_temp);
vector<string> first_multiple_input = split(rtrim(first_multiple_input_temp));
int n = stoi(first_multiple_input[0]);
int m = stoi(first_multiple_input[1]);
string arr_temp_temp;
getline(cin, arr_temp_temp);
vector<string> arr_temp = split(rtrim(arr_temp_temp));
vector<int> arr(n);
for (int i = 0; i < n; i++) {
int arr_item = stoi(arr_temp[i]);
arr[i] = arr_item;
}
string brr_temp_temp;
getline(cin, brr_temp_temp);
vector<string> brr_temp = split(rtrim(brr_temp_temp));
vector<int> brr(m);
for (int i = 0; i < m; i++) {
int brr_item = stoi(brr_temp[i]);
brr[i] = brr_item;
}
int total = getTotalX(arr, brr);
fout << total << "\n";
fout.close();
return 0;
}
string ltrim(const string &str) {
string s(str);
s.erase(
s.begin(),
find_if(s.begin(), s.end(), not1(ptr_fun<int, int>(isspace)))
);
return s;
}
string rtrim(const string &str) {
string s(str);
s.erase(
find_if(s.rbegin(), s.rend(), not1(ptr_fun<int, int>(isspace))).base(),
s.end()
);
return s;
}
vector<string> split(const string &str) {
vector<string> tokens;
string::size_type start = 0;
string::size_type end = 0;
while ((end = str.find(" ", start)) != string::npos) {
tokens.push_back(str.substr(start, end - start));
start = end + 1;
}
tokens.push_back(str.substr(start));
return tokens;
}
【问题讨论】:
-
如果您发现
count总是后退0 步,并找出应该更改count的代码为什么没有执行。您可能想要使用调试器。 -
您如何期望
i每次都能被a[j]整除?这会将您的flag设置为false,这反过来又不会让您的count增加。 -
我怀疑是程序的逻辑有问题。您声明 count 变量的方式肯定没有错。是时候使用调试器了。
-
不要使用 bits/stdc++.h stackoverflow.com/q/31816095/1023911
-
你能在minimal reproducible example中关注最小吗?