PAT (Advanced Level) Practice 1120 Friend Numbers (20 分) (set)

Two integers are called "friend numbers" if they share the same sum of their digits, and the sum is their "friend ID". For example, 123 and 51 are friend numbers since 1+2+3 = 5+1 = 6, and 6 is their friend ID. Given some numbers, you are supposed to count the number of different frind ID's among them.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N. Then N positive integers are given in the next line, separated by spaces. All the numbers are less than 1.

Output Specification:

For each case, print in the first line the number of different frind ID's among the given integers. Then in the second line, output the friend ID's in increasing order. The numbers must be separated by exactly one space and there must be no extra space at the end of the line.

Sample Input:

8
123 899 51 998 27 33 36 12

Sample Output:

4
3 6 9 26

set的基础用法 找出不同的元素 计算集合的个数以及遍历集合
 1 #include <iostream>
 2 #include <algorithm>
 3 #include <set>
 4 using namespace std;
 5 int a[10005];
 6 int _deal(int x)
 7 {
 8     int sum=0;;
 9     while(x){
10         sum+=x%10;
11         x/=10;
12     }
13     return sum;
14 }
15 int main()
16 {
17     int n;
18     while(cin>>n){
19         set<int> s;
20         set<int> ::iterator ite;
21         for(int i=0;i<n;i++){
22             cin>>a[i];
23             s.insert(_deal(a[i]));
24         }
25         cout<<s.size()<<endl;
26         for(ite=s.begin();ite!=s.end();ite++){
27             if(ite==s.begin()) cout<<*ite;
28             else cout<<" "<<*ite;
29         }
30         cout<<endl;
31     }
32     return 0;
33 }

posted @ 2019-07-09 11:10  wydxry  阅读(173)  评论(0编辑  收藏  举报
Live2D