Rumah > Artikel > pembangunan bahagian belakang > Lakukan operasi khusus pada jujukan menggunakan C++
Andaikan kita mempunyai urutan kosong dan n pertanyaan yang perlu diproses. Pertanyaan diberikan dalam bentuk pertanyaan tatasusunan dalam format {query, data}. Pertanyaan boleh terdiri daripada tiga jenis berikut:
pertanyaan = 1: Menambah data yang disediakan pada penghujung jujukan.
query = 2: Cetak elemen pada permulaan jujukan. Kemudian padamkan elemen tersebut.
query = 3: Isih urutan dalam tertib menaik.
Perhatikan bahawa data jenis pertanyaan 2 dan 3 sentiasa 0.
Jadi jika input ialah n = 9, pertanyaan = {{1, 5}, {1, 4}, {1, 3}, {1, 2}, {1, 1}, {2, 0}, {3, 0}, {2, 0}, {3, 0}}, maka outputnya ialah 5 dan 1.
Jujukan selepas setiap pertanyaan adalah seperti berikut:
priority_queue<int> priq Define one queue q for initialize i := 0, when i < n, update (increase i by 1), do: operation := first value of queries[i] if operation is same as 1, then: x := second value of queries[i] insert x into q otherwise when operation is same as 2, then: if priq is empty, then: print first element of q delete first element from q else: print -(top element of priq) delete top element from priq otherwise when operation is same as 3, then: while (not q is empty), do: insert (-first element of q) into priq and sort delete element from q
#include <bits/stdc++.h> using namespace std; void solve(int n, vector<pair<int, int>> queries){ priority_queue<int> priq; queue<int> q; for(int i = 0; i < n; i++) { int operation = queries[i].first; if(operation == 1) { int x; x = queries[i].second; q.push(x); } else if(operation == 2) { if(priq.empty()) { cout << q.front() << endl; q.pop(); } else { cout << -priq.top() << endl; priq.pop(); } } else if(operation == 3) { while(!q.empty()) { priq.push(-q.front()); q.pop(); } } } } int main() { int n = 9; vector<pair<int, int>> queries = {{1, 5}, {1, 4}, {1, 3}, {1, 2}, {1, 1}, {2, 0}, {3, 0}, {2, 0}, {3, 0}}; solve(n, queries); return 0; }
Atas ialah kandungan terperinci Lakukan operasi khusus pada jujukan menggunakan C++. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!