//------------------------------------水仙花数----------------------------------//
/*
题目描述
春天是鲜花的季节,水仙花就是其中最迷人的代表,数学上有个水仙花数,他是这样定义的: “水仙花数”是指一个三位数,它的各位数字的立方和等于其本身,
比如:153=1^3+5^3+3^3。 现在要求输出所有在m和n范围内的水仙花数。
输入描述:
输入数据有多组,每组占一行,包括两个整数m和n(100 ≤ m ≤ n ≤ 999)。
输出描述:
对于每个测试实例,要求输出所有在给定范围内的水仙花数,就是说,输出的水仙花数必须大于等于m,并且小于等于n,如果有多个,则要求从小到大排列在一行内输出,之间用一个空格隔开;
如果给定的范围内不存在水仙花数,则输出no;
每个测试实例的输出占一行。
示例1
输入
100 120
300 380
输出
no
370 371
*/
/*
水仙花数判断很简单,就是一个while循环保存好求余的数。这里主要是要输出所有
我想的是用二维数组,每一个数的各个位的数存在一个数组中,总共的水仙花数就是
竖的大小,输入使用unordered_map,因为输出可能会有相同的数
*/
#include<iostream>
#include<unordered_map>
#include<vector>
using namespace std;
int f2()
{
unordered_map<int, vector<int>> m;
int one, two;
int num = 0;
while (cin >> one >> two)
m.insert({num++, {one, two}});
vector<vector<int>> vec(num);
int flag = 0;
//保存每个数的余数
for (const auto &i : m)
{
for (int index = i.second[0]; index <= i.second[1]; ++index)
{
int temp = index;
int sum = 0;
int l = 0;
while (temp)
{
l = temp % 10;
temp /= 10;
sum += l * l * l;
}
if (sum == index)
vec[flag].push_back(index);
}
}
//输出
for (int i = num - 1; i >= 0; --i)
{
if (vec[i].size() == 0)
{
cout << "no" << endl;
continue;
}
else
{
for (int j = 0; j < vec[i].size() - 1; ++j)
cout << vec[i][j] << " ";
cout << vec[i][vec[i].size() - 1] << endl;
}
}
return 0;
}