結果

問題 No.2422 regisys?
ユーザー kakel-sankakel-san
提出日時 2023-10-09 13:28:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 3,688 bytes
コンパイル時間 1,301 ms
コンパイル使用メモリ 116,164 KB
実行使用メモリ 64,216 KB
最終ジャッジ日時 2024-07-26 18:31:42
合計ジャッジ時間 14,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
27,384 KB
testcase_01 AC 37 ms
27,392 KB
testcase_02 AC 38 ms
23,856 KB
testcase_03 AC 36 ms
27,520 KB
testcase_04 AC 40 ms
25,780 KB
testcase_05 AC 35 ms
25,348 KB
testcase_06 AC 38 ms
26,000 KB
testcase_07 AC 36 ms
25,616 KB
testcase_08 AC 37 ms
25,612 KB
testcase_09 AC 37 ms
25,228 KB
testcase_10 AC 35 ms
25,228 KB
testcase_11 AC 37 ms
27,272 KB
testcase_12 AC 35 ms
25,136 KB
testcase_13 AC 40 ms
28,036 KB
testcase_14 AC 38 ms
25,524 KB
testcase_15 AC 37 ms
27,396 KB
testcase_16 AC 38 ms
25,736 KB
testcase_17 AC 34 ms
25,096 KB
testcase_18 AC 38 ms
25,996 KB
testcase_19 AC 39 ms
28,288 KB
testcase_20 AC 39 ms
25,904 KB
testcase_21 AC 35 ms
25,392 KB
testcase_22 AC 34 ms
25,228 KB
testcase_23 AC 39 ms
25,900 KB
testcase_24 AC 39 ms
27,904 KB
testcase_25 AC 38 ms
27,828 KB
testcase_26 AC 34 ms
27,528 KB
testcase_27 AC 35 ms
25,728 KB
testcase_28 AC 36 ms
25,480 KB
testcase_29 AC 39 ms
27,960 KB
testcase_30 AC 35 ms
25,392 KB
testcase_31 AC 203 ms
46,116 KB
testcase_32 AC 312 ms
47,680 KB
testcase_33 AC 185 ms
46,116 KB
testcase_34 AC 151 ms
40,236 KB
testcase_35 AC 218 ms
50,716 KB
testcase_36 AC 238 ms
44,412 KB
testcase_37 AC 305 ms
45,544 KB
testcase_38 AC 258 ms
46,000 KB
testcase_39 AC 189 ms
39,136 KB
testcase_40 AC 136 ms
42,316 KB
testcase_41 AC 177 ms
40,392 KB
testcase_42 AC 353 ms
55,852 KB
testcase_43 AC 227 ms
47,884 KB
testcase_44 AC 384 ms
58,696 KB
testcase_45 AC 326 ms
61,312 KB
testcase_46 AC 387 ms
60,544 KB
testcase_47 AC 258 ms
48,448 KB
testcase_48 AC 374 ms
59,884 KB
testcase_49 AC 333 ms
52,824 KB
testcase_50 AC 352 ms
63,148 KB
testcase_51 AC 506 ms
59,912 KB
testcase_52 AC 188 ms
46,424 KB
testcase_53 AC 380 ms
60,756 KB
testcase_54 AC 526 ms
63,516 KB
testcase_55 AC 384 ms
61,684 KB
testcase_56 AC 393 ms
48,896 KB
testcase_57 AC 580 ms
62,276 KB
testcase_58 AC 576 ms
64,096 KB
testcase_59 AC 576 ms
62,420 KB
testcase_60 AC 564 ms
64,216 KB
testcase_61 AC 34 ms
25,360 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 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);
            }
            if (q.Count > 0)
            {
                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;
        }
    }
}
0