文章
25
粉丝
137
获赞
7
访问
129.5k
#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
using namespace std;
int main()
{
int n;
string opt, bd;
vector<pair<int, int> > vec;
while (cin >> n) {
while (n--) {
cin >> opt;
if (opt == "Pop") {
if (vec.size() == 0)
cout << "empty" << endl;
else {
string ans = to_string(vec[0].first);
&...
登录后发布评论
暂无评论,来抢沙发