結果

問題 No.649 ここでちょっとQK!
ユーザー htensaihtensai
提出日時 2020-06-12 13:04:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,154 bytes
コンパイル時間 2,631 ms
コンパイル使用メモリ 78,908 KB
実行使用メモリ 65,800 KB
最終ジャッジ日時 2024-06-24 03:49:17
合計ジャッジ時間 15,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,456 KB
testcase_01 AC 67 ms
50,392 KB
testcase_02 AC 65 ms
49,824 KB
testcase_03 AC 267 ms
56,072 KB
testcase_04 AC 652 ms
65,800 KB
testcase_05 AC 475 ms
63,768 KB
testcase_06 AC 469 ms
64,604 KB
testcase_07 AC 55 ms
50,364 KB
testcase_08 AC 54 ms
50,516 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 381 ms
60,192 KB
testcase_13 AC 393 ms
60,168 KB
testcase_14 AC 411 ms
60,584 KB
testcase_15 AC 433 ms
60,500 KB
testcase_16 AC 397 ms
60,444 KB
testcase_17 AC 451 ms
60,396 KB
testcase_18 AC 481 ms
60,108 KB
testcase_19 AC 506 ms
60,048 KB
testcase_20 AC 488 ms
62,032 KB
testcase_21 AC 504 ms
62,012 KB
testcase_22 AC 503 ms
62,096 KB
testcase_23 AC 530 ms
62,196 KB
testcase_24 AC 606 ms
61,876 KB
testcase_25 AC 611 ms
64,308 KB
testcase_26 AC 572 ms
64,192 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 91 ms
51,448 KB
testcase_30 AC 351 ms
59,532 KB
testcase_31 AC 387 ms
60,164 KB
testcase_32 AC 56 ms
50,468 KB
testcase_33 RE -
testcase_34 AC 54 ms
50,052 KB
testcase_35 AC 53 ms
50,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 2);
		int q = Integer.parseInt(first[0]);
		int k = Integer.parseInt(first[1]);
		ArrayList<Long> list = new ArrayList<>();
		PriorityQueue<Long> fore = new PriorityQueue<>();
		PriorityQueue<Long> rear = new PriorityQueue<>();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    String[] line = br.readLine().split(" ");
		    int type = Integer.parseInt(line[0]);
		    if (type == 1) {
		        long x = Long.parseLong(line[1]);
		        if (fore.size() < k - 1 || -fore.peek() > x) {
		            fore.add(-x);
		            if (fore.size() >= k) {
		                rear.add(-fore.poll());
		            }
		        } else {
		            rear.add(x);
		        }
		    } else {
		        if (rear.size() == 0) {
		            sb.append(-1);
		        } else {
		            sb.append(rear.poll());
		        }
		        sb.append("\n");
		    }
		}
		System.out.print(sb);
	}
}
0