6道单选6道多选5道判断2道编程编程题(1):有很多个机场,编号1~2^20,一开始所有机场都没有飞机,给你所有 有飞机降落的机场编号 和 有飞机起飞的机场编号 ,每次只降落或起飞一架飞机,求最后时刻还停留1~15架飞机的机场个数。 #include<iostream> using namespace std; int n, m; int num[1 << 20 | 1]; int ans[16]; int main() { cin >> n; while (n--) { int a; cin >> a; num[a]++;...