結果

問題 No.649 ここでちょっとQK!
ユーザー htensaihtensai
提出日時 2020-06-12 13:07:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 671 ms / 3,000 ms
コード長 1,241 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 65,908 KB
最終ジャッジ日時 2024-06-24 03:49:58
合計ジャッジ時間 16,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
50,320 KB
testcase_01 AC 64 ms
50,156 KB
testcase_02 AC 59 ms
50,096 KB
testcase_03 AC 284 ms
56,108 KB
testcase_04 AC 666 ms
65,908 KB
testcase_05 AC 503 ms
64,128 KB
testcase_06 AC 491 ms
64,148 KB
testcase_07 AC 59 ms
50,132 KB
testcase_08 AC 62 ms
50,224 KB
testcase_09 AC 65 ms
50,204 KB
testcase_10 AC 58 ms
50,204 KB
testcase_11 AC 58 ms
50,292 KB
testcase_12 AC 431 ms
60,456 KB
testcase_13 AC 413 ms
59,580 KB
testcase_14 AC 408 ms
60,780 KB
testcase_15 AC 438 ms
60,480 KB
testcase_16 AC 418 ms
60,088 KB
testcase_17 AC 477 ms
60,464 KB
testcase_18 AC 490 ms
60,084 KB
testcase_19 AC 520 ms
60,216 KB
testcase_20 AC 549 ms
62,032 KB
testcase_21 AC 568 ms
61,968 KB
testcase_22 AC 580 ms
62,064 KB
testcase_23 AC 604 ms
61,752 KB
testcase_24 AC 600 ms
64,640 KB
testcase_25 AC 651 ms
64,304 KB
testcase_26 AC 671 ms
64,796 KB
testcase_27 AC 96 ms
51,188 KB
testcase_28 AC 101 ms
51,428 KB
testcase_29 AC 106 ms
51,172 KB
testcase_30 AC 376 ms
59,652 KB
testcase_31 AC 403 ms
59,640 KB
testcase_32 AC 58 ms
50,372 KB
testcase_33 AC 62 ms
50,204 KB
testcase_34 AC 64 ms
50,328 KB
testcase_35 AC 60 ms
50,112 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 (k == 1) {
		            rear.add(x);
		            continue;
		        }
		        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