結果

問題 No.649 ここでちょっとQK!
ユーザー drken1215drken1215
提出日時 2018-02-13 15:48:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 3,000 ms
コード長 1,348 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 75,712 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 01:11:56
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 301 ms
6,940 KB
testcase_04 AC 177 ms
6,940 KB
testcase_05 AC 162 ms
6,944 KB
testcase_06 AC 165 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 92 ms
6,940 KB
testcase_13 AC 91 ms
6,940 KB
testcase_14 AC 90 ms
6,940 KB
testcase_15 AC 95 ms
6,944 KB
testcase_16 AC 95 ms
6,944 KB
testcase_17 AC 106 ms
6,944 KB
testcase_18 AC 118 ms
6,944 KB
testcase_19 AC 127 ms
6,944 KB
testcase_20 AC 137 ms
6,944 KB
testcase_21 AC 145 ms
6,940 KB
testcase_22 AC 160 ms
6,944 KB
testcase_23 AC 166 ms
6,944 KB
testcase_24 AC 177 ms
6,944 KB
testcase_25 AC 184 ms
6,940 KB
testcase_26 AC 193 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 60 ms
6,940 KB
testcase_31 AC 63 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
using namespace std;

int main() {
  // small.top() は small の最大値 (K個になるようにする)
  priority_queue<long long> small;

  // large.top() は large の最小値
  priority_queue<long long, vector<long long>, greater<long long> > large;
  
  int Q, K;
  cin >> Q >> K;
  for (int i = 0; i < Q; ++i) {
	int T;
	cin >> T;
	if (T == 1) {
	  long long V;
	  cin >> V;

	  // そもそも K 個に達していなかったら small へ
	  if (small.size() < K) {
		small.push(V);
		continue;
	  }
		
	  // k 番目の値
	  long long current_kth = small.top();

	  // 現在の k 番目の値より小さかったら、それをlarge 側へ追い出して V を small に push
	  if (V < current_kth) {
		small.pop();
		small.push(V);
		large.push(current_kth);
	  }
	  // そうでないときは単純に large 側に push
	  else {
		large.push(V);
	  }
	}
	else {
	  // そもそも K 個に達していなかったらダメ
	  if (small.size() < K) {
		cout << -1 << endl;
		continue;
	  }

	  // k 番目の値を small から pop して、large の top を small へ移す
	  long long current_kth = small.top();
	  cout << current_kth << endl;
	  small.pop();
	  if (!large.empty()) {
		long long next_kth = large.top();
		large.pop();
		small.push(next_kth);
	  }
	}
  }
}















0