写一个程序完成以下命令:
new id ——新建一个指定编号为id的序列(id<10000)
add id num——向编号为id的序列加入整数num
merge id1 id2——合并序列id1和id2中的数,并将id2清空
unique id——去掉序列id中重复的元素
out id ——从小到大输出编号为id的序列中的元素,以空格隔开
16 new 1 new 2 add 1 1 add 1 2 add 1 3 add 2 1 add 2 2 add 2 3 add 2 4 out 1 out 2 merge 1 2 out 1 out 2 unique 1 out 1
1 2 3 1 2 3 4 1 1 2 2 3 3 4 1 2 3 4
#include
#include
#include
7 add 1 add 1 ask 1 ask 2 del 2 del 1 ask 1
1 2 1 2 0 0 0 2 1 0
#include
#include
#include
using namespace std;
typedef multiset MS;
int main()
{
MS ms;
set s;
int n, num;
string str;
cin >> n;
while (n--)
{
cin >> str;
if (str == "add")
{
cin >> num;
s.insert(num);
ms.insert(num);
cout << ms.count(num) << endl;
}
else if (str == "ask")
{
cin >> num;
if (s.count(num))
cout << "1" << " ";
else
cout << "0" << " ";
cout << ms.count(num) << endl;
}
else if (str == "del")
{
cin >> num;
cout << ms.count(num) << endl;
ms.erase(num);
}
}
return 0;
}
给定n个字符串(从1开始编号),每个字符串中的字符位置从0开始编号,长度为1-500,现有如下若干操作:
其中N,X,L可由find与rfind操作表达式构成,S,S1,S2可由copy与add操作表达式构成。
第一行为一个整数n(n在1-20之间)
接下来n行为n个字符串,字符串不包含空格及操作命令等。
接下来若干行为一系列操作,直到over结束。
根据操作提示输出对应字符串。
3 329strjvc Opadfk48 Ifjoqwoqejr insert copy 1 find 2 1 2 2 2 print 2 reset add copy 1 find 3 1 3 copy 2 find 2 2 2 3 print 3 insert a 3 2 printall over
Op29adfk48 358 329strjvc Op29adfk48 35a8
#include
#include
#include
#include
using namespace std;
vector svec;
int getN(string s);
string getStr(string str);
bool isInt(string str);
int find();
int rfind();
string copy();
string add();
void insert();
void reset();
void print();
void printall();
int main()
{
int n;
string str;
cin >> n;
while (n--)
{
cin >> str;
svec.push_back(str);
}
while (1)
{
cin >> str;
if (str == "over") break;
if (str == "copy")
copy();
else if (str == "add")
add();
else if (str == "find")
find();
else if (str == "rfind")
rfind();
else if (str == "insert")
insert();
else if (str == "reset")
reset();
else if (str == "print")
print();
else if (str == "printall")
printall();
}
return 0;
}
int getN(string s)
{
if (s == "find")
return find();
else if (s == "rfind")
return rfind();
else
return s[0] - '0';
}
string getStr(string str)
{
if (str == "add")
return add();
else if (str == "copy")
return copy();
else
return str;
}
int find()
{
string s,str;
cin >> s;
s = getStr(s);
int n;
cin >> str;
n = getN(str);
if (svec[n-1].find(s) == string::npos)
return svec[n-1].size();
return svec[n-1].find(s);
}
int rfind()
{
string s, str;
cin >> s;
s = getStr(s);
int n;
cin >> str;
n = getN(str);
if (svec[n-1].rfind(s) == string::npos)
return svec[n-1].size();
return svec[n-1].rfind(s);
}
string copy()
{
int N[3];
string str;
for (int i = 0; i < 3; i++)
{
cin >> str;
N[i] = getN(str);
}
return svec[N[0]-1].substr(N[1], N[2]);
}
bool isInt(string str)
{
if (str.size() > 5)
return false;
for (int i = 0; i < str.size(); i++)
{
if (!(str[i] >= '0' && str[i] <= '9'))
return false;
}
return true;
}
string add()
{
string str, s[2];
for (int i = 0; i < 2; i++)
{
cin >> s[i];
s[i] = getStr(s[i]);
}
if (isInt(s[1]) && isInt(s[0]))
{
int a = atoi(s[0].c_str());
int b = atoi(s[1].c_str());
int c = a + b;
stringstream ss;
ss << c;
ss >> str;
return str;
}
return s[0] + s[1];
}
void insert()
{
string s;
cin >> s;
s = getStr(s);
int n, x;
string temp;
cin >> temp;
n = getN(temp);
cin >> temp;
x = getN(temp);
svec[n-1].insert(x, s);
}
void reset()
{
string s, str;
cin >> s;
s = getStr(s);
int n;
cin >> str;
n = getN(str);
svec[n-1].assign(s);
}
void print()
{
string s;
int n;
cin >> s;
n = getN(s);
cout << svec[n-1] << endl;
}
void printall()
{
for (int i = 0; i < svec.size(); i++)
cout << svec[i] << endl;
}
为了迎接08年的奥运会,让大家更加了解各种格斗运动,facer新开了一家热血格斗场。格斗场实行会员制,但是新来的会员不需要交入会费,而只要同一名老会员打一场表演赛,证明自己的实力。
我们假设格斗的实力可以用一个正整数表示,成为实力值。另外,每个人都有一个唯一的id,也是一个正整数。为了使得比赛更好看,每一个新队员都会选择与他实力最为接近的人比赛,即比赛双方的实力值之差的绝对值越小越好,如果有两个人的实力值与他差别相同,则他会选择比他弱的那个(显然,虐人必被虐好)。
不幸的是,Facer一不小心把比赛记录弄丢了,但是他还保留着会员的注册记录。现在请你帮facer恢复比赛纪录,按照时间顺序依次输出每场比赛双方的id。
第一行一个数n(0 < n <=100000),表示格斗场新来的会员数(不包括facer)。以后n行每一行两个数,按照入会的时间给出会员的id和实力值。一开始,facer就算是会员,id为1,实力值1000000000。输入保证两人的实力值不同。
N行,每行两个数,为每场比赛双方的id,新手的id写在前面。
3 2 1 3 3 4 2
2 1 3 2 4 2
#include
#include
我们定义一个正整数a比正整数b优先的含义是:
*a的质因数数目(不包括自身)比b的质因数数目多;
*当两者质因数数目相等时,数值较大者优先级高。
现在给定一个容器,初始元素数目为0,之后每次往里面添加10个元素,每次添加之后,要求输出优先级最高与最低的元素,并把该两元素从容器中删除。
第一行: num (添加元素次数,num <= 30)
下面10*num行,每行一个正整数n(n < 10000000).
每次输入10个整数后,输出容器中优先级最高与最低的元素,两者用空格间隔。
1 10 7 66 4 5 30 91 100 8 9
66 5
#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
using namespace std;
bool isPrime(int iVal)
{
for (int i = 2; i <= sqrt(iVal); i++)
{
if (iVal % i == 0)
return false;
}
return true;
}
int getFactor(int a)
{
int sum = 0;
int k = 0;
for (int i = 2; i <= sqrt(a); i++)
{
if (a % i == 0)
{
k = a / i;
if (i != k && isPrime(k))
sum += 1;
if (isPrime(i))
{
sum += 1;
}
}
}
return sum;
}
class Compare_Class_Up
{
public:
bool operator()(const int& a, const int& b)
{
int sumA = 0, sumB = 0;
sumA = getFactor(a);
sumB = getFactor(b);
if (sumA == sumB)
{
if (a < b)
{
return true;
}
else
return false;
}
else if (sumA > sumB)
{
return false;
}
else
return true;
}
};
int main()
{
set queue;
int n = 0;
scanf("%d", &n);
while (n--)
{
int num;
for (int i = 0; i < 10; i++)
{
scanf("%d", &num);
queue.insert(num);
}
int min = *(queue.begin());
int max = *(queue.rbegin());
queue.erase(max);
queue.erase(min);
printf("%d %d\n",max, min);
}
return 0;
}