結果
問題 | No.649 ここでちょっとQK! |
ユーザー | バカらっく |
提出日時 | 2018-02-09 23:30:19 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,170 bytes |
コンパイル時間 | 1,184 ms |
コンパイル使用メモリ | 108,544 KB |
実行使用メモリ | 48,256 KB |
最終ジャッジ日時 | 2024-10-09 02:47:45 |
合計ジャッジ時間 | 6,734 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
48,256 KB |
testcase_01 | AC | 36 ms
20,480 KB |
testcase_02 | AC | 42 ms
20,992 KB |
testcase_03 | AC | 139 ms
26,240 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.IO; using System.Linq; using System.Collections.Generic; using System.Text; public class Program { public void Proc() { int[] inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray(); int q = inpt[0]; int k = inpt[1]; SortedDictionary<long, int> primaryList = new SortedDictionary<long, int>(); SortedDictionary<long, int> secandaryList = new SortedDictionary<long, int>(); int itemCount = 0; StringBuilder ans = new StringBuilder(); for (int i = 0; i < q; i++) { long[] tmp = Reader.ReadLine().Split(' ').Select(a => long.Parse(a)).ToArray(); if(tmp[0]==1) { long num = tmp[1]; if(itemCount>=k) { if(primaryList.Keys.Last()>=num) { if(primaryList.ContainsKey(num)) { primaryList[num]++; } else { primaryList.Add(num, 1); } itemCount++; while(itemCount>k) { long key = primaryList.Last().Key; if(primaryList[key]<=1) { primaryList.Remove(key); } else { primaryList[key]--; } itemCount--; if(secandaryList.ContainsKey(key)) { secandaryList[key]++; } else { secandaryList.Add(key, 1); } } } else { if(secandaryList.ContainsKey(num)) { secandaryList[num]++; } else { secandaryList.Add(num, 1); } } } else { if(primaryList.ContainsKey(num)) { primaryList[num]++; } else { primaryList.Add(num, 1); } itemCount++; } } else { if(itemCount<k) { ans.AppendLine("-1"); } else { long key = primaryList.Last().Key; ans.AppendLine(key.ToString()); if(primaryList[key]<=1) { primaryList.Remove(key); } else { primaryList[key]--; } if(secandaryList.Count>0) { long addKey = secandaryList.First().Key; if(primaryList.ContainsKey(addKey)) { primaryList[addKey]++; } else { primaryList.Add(addKey, 1); } if(secandaryList[addKey]<=1) { secandaryList.Remove(addKey); } else { secandaryList[addKey]--; } } else { 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 = @" 1 1 2 "; } public static void Main(string[] args) { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }