1.set的定义
1 | set<typename> name; |
2.vector的遍历
1 | set<int> s; |
3.常用函数
1.在set后面添加一个元素 insert()
1 | set<int> s; |
2.求set的长度
1 | set<int> s; |
3.清空set中所有元素
1 | set<int> s; |
4.查找元素(返回set中对应值为value的迭代器)
1 | set<int> s; |
4.删除单个元素
1 | set<int> s; |
7.删除一个区间内所有元素 注意左闭右开
1 | set<int> s; |
Set Similarity
Given two sets of integers, the similarity of the sets is defined to be Nc/Nt×100%, where c is the number of distinct common numbers shared by the two sets, and Nt is the total number of distinct numbers in the two sets. Your job is to calculate the similarity of any given pair of sets.
输入格式:
Each input file contains one test case. Each case first gives a positive integer N (≤50) which is the total number of sets. Then N lines follow, each gives a set with a positive M (≤104 ) and followed by M integers in the range [0,10 9]. After the input of sets, a positive integer K (≤2000) is given, followed by K lines of queries. Each query gives a pair of set numbers (the sets are numbered from 1 to N). All the numbers in a line are separated by a space.
输出格式:
For each query, print in one line the similarity of the sets, in the percentage form accurate up to 1 decimal place.
1 | 3 |
输出样例:
1 | 50.0% |
思路:
用set解题 求两个集合的交集和并集
我的代码如下:
1 | #include<bits/stdc++.h> |