結果
問題 | No.2422 regisys? |
ユーザー | kakel-san |
提出日時 | 2023-10-09 13:26:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,620 bytes |
コンパイル時間 | 5,055 ms |
コンパイル使用メモリ | 116,140 KB |
実行使用メモリ | 70,344 KB |
最終ジャッジ日時 | 2024-07-26 18:31:21 |
合計ジャッジ時間 | 18,465 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
25,344 KB |
testcase_01 | RE | - |
testcase_02 | AC | 40 ms
27,704 KB |
testcase_03 | AC | 36 ms
25,268 KB |
testcase_04 | AC | 39 ms
25,992 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 37 ms
27,520 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 40 ms
25,532 KB |
testcase_15 | RE | - |
testcase_16 | AC | 42 ms
26,028 KB |
testcase_17 | RE | - |
testcase_18 | AC | 40 ms
27,960 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 217 ms
48,792 KB |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 354 ms
60,188 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | AC | 328 ms
57,464 KB |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 377 ms
63,480 KB |
testcase_49 | RE | - |
testcase_50 | AC | 355 ms
59,220 KB |
testcase_51 | RE | - |
testcase_52 | AC | 186 ms
48,212 KB |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | AC | 35 ms
25,600 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var a = NList; var b = NList; var map = NArr(m); var list = new List<(int id, int b)>(n); for (var i = 0; i < n; ++i) list.Add((i, b[i])); list.Sort((l, r) => r.b.CompareTo(l.b)); var mmas = new List<int>(); var ppls = new List<int>(); for (var i = 0; i < m; ++i) { if (map[i][0] == 0) ppls.Add(map[i][1]); else mmas.Add(map[i][1]); } mmas.Sort(); ppls.Sort(); var q = new PriorityQueue<int>(n, true); var ans = n; for (var i = 0; i < mmas.Count; ++i) { while (list.Count > 0 && list[list.Count - 1].b <= mmas[i]) { q.Enqueue(a[list[list.Count - 1].id]); list.RemoveAt(list.Count - 1); } q.Dequeue(); --ans; } var rest = new List<int>(list.Select(li => a[li.id])); while (q.Count > 0) rest.Add(q.Dequeue()); rest.Sort((l, r) => r.CompareTo(l)); for (var i = 0; i < ppls.Count; ++i) { if (rest.Count > 0 && rest[rest.Count - 1] <= ppls[i]) { --ans; rest.RemoveAt(rest.Count - 1); } } WriteLine(ans); } class PriorityQueue<T> where T : IComparable<T> { public T[] List; public int Count; bool IsTopMax; public PriorityQueue(int count, bool isTopMax) { IsTopMax = isTopMax; List = new T[Math.Max(128, count)]; } public void Enqueue(T value) { if (Count == List.Length) { var newlist = new T[List.Length * 2]; for (var i = 0; i < List.Length; ++i) newlist[i] = List[i]; List = newlist; } var pos = Count; List[pos] = value; ++Count; while (pos > 0) { var parent = (pos - 1) / 2; if (Calc(List[parent], List[pos], true)) break; Swap(parent, pos); pos = parent; } } public T Dequeue() { --Count; Swap(0, Count); var pos = 0; while (true) { var child = pos * 2 + 1; if (child >= Count) break; if (child + 1 < Count && Calc(List[child + 1], List[child], false)) ++child; if (Calc(List[pos], List[child], true)) break; Swap(pos, child); pos = child; } return List[Count]; } bool Calc(T a, T b, bool equalVal) { var ret = a.CompareTo(b); if (ret == 0 && equalVal) return true; return IsTopMax ? ret > 0 : ret < 0; } void Swap(int a, int b) { var tmp = List[a]; List[a] = List[b]; List[b] = tmp; } } }