ソースを参照

添加 '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;
+}