浏览代码

添加 'F.cpp'

webturing 5 年之前
父节点
当前提交
c90374c680
共有 1 个文件被更改,包括 22 次插入0 次删除
  1. 22 0
      F.cpp

+ 22 - 0
F.cpp

@@ -0,0 +1,22 @@
+#include <bits/stdc++.h>
+using namespace std;
+int main() {
+  int n, q;
+  cin >> n >> q;
+  vector<priority_queue<int>> S(n);
+  while (q--) {
+    int op, t;
+    cin >> op >> t;
+    if (op == 0) {
+      int x;
+      cin >> x;
+      S[t].push(x);
+    } else if (op == 1) {
+      if (S[t].size()) cout << S[t].top() << endl;
+    } else if (op == 2) {
+      if (S[t].size()) S[t].pop();
+    }
+  }
+  
+  return 0;
+}