結果

問題 No.649 ここでちょっとQK!
ユーザー バカらっくバカらっく
提出日時 2018-02-10 12:52:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,405 bytes
コンパイル時間 3,905 ms
コンパイル使用メモリ 114,660 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-10-13 07:12:49
合計ジャッジ時間 12,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
20,992 KB
testcase_01 AC 32 ms
20,480 KB
testcase_02 AC 35 ms
20,992 KB
testcase_03 AC 136 ms
26,368 KB
testcase_04 WA -
testcase_05 AC 393 ms
35,456 KB
testcase_06 AC 239 ms
24,960 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 37 ms
21,120 KB
testcase_10 AC 36 ms
20,608 KB
testcase_11 AC 36 ms
20,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
21,120 KB
testcase_28 AC 38 ms
21,120 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 34 ms
20,864 KB
testcase_34 AC 36 ms
20,736 KB
testcase_35 AC 31 ms
20,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{

    public void Proc()
    {
        int[] qk = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray();
        int q = qk[0];
        int k = qk[1];

        SortedDictionary<long, int> first = new SortedDictionary<long, int>();
        SortedDictionary<long, int> second = new SortedDictionary<long, int>();
        int itemCount = 0;
        StringBuilder ans = new StringBuilder();
        for (int i = 0; i < q; i++) {
            long[] inpt = Reader.ReadLine().Split(' ').Select(a => long.Parse(a)).ToArray();
            if(inpt[0]==1) {
                long num = inpt[1];
                if(itemCount>=k-1) {
                    if(second.ContainsKey(num)) {
                        second[num]++;
                    } else {
                        second.Add(num, 1);
                    }
                } else {
                    if(first.ContainsKey(num)) {
                        first[num]++;
                    } else {
                        first.Add(num, 1);
                    }
                }
                itemCount++;
            } else {
                if(second.Count<=0) {
                    ans.AppendLine("-1");
                } else {
                    long num = second.First().Key;
                    ans.AppendLine(num.ToString());
                    if(--second[num]<=0) {
                        second.Remove(num);
                    }
                    itemCount--;
                }
            }
        }
        Console.Write(ans.ToString());
    }


    public class Reader
    {
        private static StringReader sr;
        public static bool IsDebug = false;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (sr == null)
                {
                    sr = new StringReader(InputText.Trim());
                }
                return sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        private static string InputText = @"





13 3
1 0
1 0
1 0
1 0
1 0
1 0
2
2
2
2
2
2
2




";
    }

    public static void Main(string[] args)
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0