description
給你兩個集合,計算其並集,即 + 。
注: + 中不允許出現重複元素,但是 與 之間可能存在相同元素。
input
輸入資料分為三行,第一行有兩個數字 n, m(0output
輸出一行資料,表示合併後的集合,要求從小到大輸出,每個元素之間用乙個空格隔開。
sample input 1
1 21
2 3sample output 1
1 2 3
sample input 2
1 21
1 2sample output 2
1 2source
計蒜客**:
#include
using
namespace std;
intmain()
for(
int i=
1;i<=m;i++
)int cnt=0;
for(set<
int>
::iterator it=a.
begin()
;it!=a.
end(
);it++)}
return0;
}
計算集合的並
題目 問題描述 給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與 之間可能存在相同元素。輸入格式 輸入資料分為三行,第一行有兩個數字 n,m 0 include include using namespace std intmain bool flag false for set i...
計算集合的並
description 給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與 之間可能存在相同元素。input 輸入資料分為三行,第一行有兩個數字 n,m 0output 輸出一行資料,表示合併後的集合,要求從小到大輸出,每個元素之間用乙個空格隔開。sample input 1 1 21...
計算集合的並 set
給你兩個集合,計算其並集,即 注 中不允許出現重複元素,但是 與之間可能存在相同元素。輸入格式 輸入資料分為三行,第一行有兩個數字n,m 0 n,m 10000 分別表示集合 a 和集合 b 的元素個數。後兩行分別表示集合 a 和集合 b。每個元素為不超出 int 範圍的整數,每個元素之間用乙個空格...