結果

問題 No.2422 regisys?
ユーザー 👑 kakel-sankakel-san
提出日時 2023-10-09 13:26:53
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 3,620 bytes
コンパイル時間 1,378 ms
コンパイル使用メモリ 66,724 KB
実行使用メモリ 61,768 KB
最終ジャッジ日時 2023-10-09 13:27:15
合計ジャッジ時間 21,713 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
23,980 KB
testcase_01 RE -
testcase_02 AC 78 ms
22,132 KB
testcase_03 AC 71 ms
21,920 KB
testcase_04 AC 78 ms
20,088 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 72 ms
23,892 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 79 ms
24,124 KB
testcase_15 RE -
testcase_16 AC 79 ms
20,100 KB
testcase_17 RE -
testcase_18 AC 79 ms
24,076 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 272 ms
47,596 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 423 ms
51,872 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 413 ms
52,752 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 468 ms
57,164 KB
testcase_49 RE -
testcase_50 AC 409 ms
56,572 KB
testcase_51 RE -
testcase_52 AC 235 ms
43,456 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 69 ms
21,896 KB
権限があれば一括ダウンロードができます

ソースコード

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);
            }
            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