結果
問題 | No.649 ここでちょっとQK! |
ユーザー | バカらっく |
提出日時 | 2018-02-13 15:37:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 767 ms / 3,000 ms |
コード長 | 1,988 bytes |
コンパイル時間 | 2,869 ms |
コンパイル使用メモリ | 81,028 KB |
実行使用メモリ | 59,260 KB |
最終ジャッジ日時 | 2024-11-29 11:58:07 |
合計ジャッジ時間 | 20,115 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
37,304 KB |
testcase_01 | AC | 56 ms
37,284 KB |
testcase_02 | AC | 61 ms
37,432 KB |
testcase_03 | AC | 259 ms
48,280 KB |
testcase_04 | AC | 748 ms
59,260 KB |
testcase_05 | AC | 623 ms
57,344 KB |
testcase_06 | AC | 592 ms
56,960 KB |
testcase_07 | AC | 63 ms
37,372 KB |
testcase_08 | AC | 62 ms
37,180 KB |
testcase_09 | AC | 62 ms
37,196 KB |
testcase_10 | AC | 64 ms
37,540 KB |
testcase_11 | AC | 62 ms
37,048 KB |
testcase_12 | AC | 440 ms
53,304 KB |
testcase_13 | AC | 439 ms
52,704 KB |
testcase_14 | AC | 431 ms
53,220 KB |
testcase_15 | AC | 502 ms
51,816 KB |
testcase_16 | AC | 467 ms
51,916 KB |
testcase_17 | AC | 576 ms
54,220 KB |
testcase_18 | AC | 607 ms
54,012 KB |
testcase_19 | AC | 653 ms
54,232 KB |
testcase_20 | AC | 665 ms
54,704 KB |
testcase_21 | AC | 707 ms
55,628 KB |
testcase_22 | AC | 686 ms
55,864 KB |
testcase_23 | AC | 721 ms
55,812 KB |
testcase_24 | AC | 726 ms
56,344 KB |
testcase_25 | AC | 743 ms
57,656 KB |
testcase_26 | AC | 767 ms
57,236 KB |
testcase_27 | AC | 94 ms
38,820 KB |
testcase_28 | AC | 103 ms
38,924 KB |
testcase_29 | AC | 109 ms
38,828 KB |
testcase_30 | AC | 405 ms
52,208 KB |
testcase_31 | AC | 514 ms
53,588 KB |
testcase_32 | AC | 63 ms
37,476 KB |
testcase_33 | AC | 65 ms
37,412 KB |
testcase_34 | AC | 64 ms
37,388 KB |
testcase_35 | AC | 55 ms
37,192 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.PriorityQueue; public class Main { public BufferedReader br; /** * メイン処理 * @throws IOException */ public void Proc() throws IOException { int[] inpt = getIntArray(); int q = inpt[0]; int k = inpt[1]; PriorityQueue<Long> q1 = new PriorityQueue<>(); PriorityQueue<Long> q2 = new PriorityQueue<>(); StringBuilder ans = new StringBuilder(); for(int i=0; i<q; i++) { long[] tm = getLongArray(); if(tm[0]==1) { if(q1.size()<k-1) { q1.add(tm[1]*-1); } else if(q2.size()==0||q2.peek()>tm[1]) { q1.add(tm[1]*-1); q2.add(q1.poll()*-1); } else { q2.add(tm[1]); } } else { if(q2.size()<=0){ ans.append("-1\n"); } else { ans.append(q2.poll()+"\n"); } } } System.out.print(ans.toString()); } private long[] getLongArray() throws IOException { String[] inpt = br.readLine().split(" "); List<Long> lst = new ArrayList<>(); for(String tmp:inpt) { lst.add(Long.parseLong(tmp)); } long[] ret = new long[lst.size()]; for(int i=0; i<ret.length;i++) { ret[i] = lst.get(i); } return ret; } private int[] getIntArray() throws IOException { String[] inpt = br.readLine().split(" "); List<Integer> lst = new ArrayList<>(); for(String tmp:inpt) { lst.add(Integer.parseInt(tmp)); } int[] ret = new int[lst.size()]; for(int i=0; i<ret.length;i++) { ret[i] = lst.get(i); } return ret; } public static void main(String[] args) { Main mn = new Main(); mn.br = new java.io.BufferedReader(new java.io.InputStreamReader(System.in)); try { mn.Proc(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } finally { try { mn.br.close(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } } } }