結果

問題 No.1736 Princess vs. Dragoness
ユーザー bluemeganebluemegane
提出日時 2021-11-12 22:52:12
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,386 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 68,260 KB
実行使用メモリ 25,992 KB
最終ジャッジ日時 2023-08-17 03:14:46
合計ジャッジ時間 5,682 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
23,608 KB
testcase_01 AC 61 ms
21,528 KB
testcase_02 AC 61 ms
21,568 KB
testcase_03 AC 69 ms
21,948 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 AC 70 ms
22,076 KB
testcase_12 AC 69 ms
24,016 KB
testcase_13 WA -
testcase_14 AC 70 ms
22,276 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 72 ms
22,116 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 71 ms
24,160 KB
testcase_22 WA -
testcase_23 AC 69 ms
19,960 KB
testcase_24 WA -
testcase_25 RE -
testcase_26 AC 71 ms
22,012 KB
testcase_27 AC 71 ms
22,016 KB
testcase_28 AC 69 ms
21,928 KB
testcase_29 AC 70 ms
22,128 KB
testcase_30 AC 70 ms
24,032 KB
testcase_31 WA -
testcase_32 AC 70 ms
20,056 KB
testcase_33 AC 61 ms
21,496 KB
testcase_34 AC 61 ms
21,676 KB
testcase_35 AC 61 ms
21,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public class PriorityQueue<T> where T : IComparable
{
    private IComparer<T> _comparer = null;
    private int _type = 0;
    private T[] _heap;
    private int _sz = 0;
    private int _count = 0;
    public PriorityQueue(int maxSize, IComparer<T> comparer)
    {
        _heap = new T[maxSize];
        _comparer = comparer;
    }
    public PriorityQueue(int maxSize, int type = 0)
    {
        _heap = new T[maxSize];
        _type = type;
    }
    private int Compare(T x, T y)
    {
        if (_comparer != null) return _comparer.Compare(x, y);
        return _type == 0 ? x.CompareTo(y) : y.CompareTo(x);
    }
    public void Push(T x)
    {
        _count++;
        var i = _sz++;
        while (i > 0)
        {
            var p = (i - 1) / 2;
            if (Compare(_heap[p], x) <= 0) break;
            _heap[i] = _heap[p];
            i = p;
        }
        _heap[i] = x;
    }
    public T Pop()
    {
        _count--;
        T ret = _heap[0];
        T x = _heap[--_sz];
        int i = 0;
        while (i * 2 + 1 < _sz)
        {
            int a = i * 2 + 1;
            int b = i * 2 + 2;
            if (b < _sz && Compare(_heap[b], _heap[a]) < 0) a = b;
            if (Compare(_heap[a], x) >= 0) break;
            _heap[i] = _heap[a];
            i = a;
        }
        _heap[i] = x;
        return ret;
    }
    public int Count() => _count;
    public T Peek() => _heap[0];
    public bool Contains(T x)
    {
        for (int i = 0; i < _sz; i++) if (x.Equals(_heap[i])) return true;
        return false;
    }
    public void Clear()
    {
        while (this.Count() > 0) this.Pop();
    }
    public IEnumerator<T> GetEnumerator()
    {
        var ret = new List<T>();
        while (this.Count() > 0)
        {
            ret.Add(this.Pop());
        }
        foreach (var r in ret)
        {
            this.Push(r);
            yield return r;
        }
    }
    public T[] ToArray()
    {
        T[] array = new T[_sz];
        int i = 0;
        foreach (var r in this)
        {
            array[i++] = r;
        }
        return array;
    }
}

public class P : IComparable
{
    public int id { get; set; }
    public long d { get; set; }
    public int CompareTo(object obj)
    {
        var x = (P)obj;
        if (this.d > x.d) return 1;
        else if (this.d == x.d) return 0;
        else return -1;
    }
}


public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var a = int.Parse(line[1]);
        var b = int.Parse(line[2]);
        var x = int.Parse(line[3]);
        var y = int.Parse(line[4]);
        line = Console.ReadLine().Trim().Split(' ');
        var h = Array.ConvertAll(line, long.Parse);
        getAns(n, a, b, x, y, h);
    }
    static void getAns(int n, int a, int b, int x, int y, long[] h)
    {
        var pq = new PriorityQueue<P>(n + 100, 1);
        for (int i = 0; i < n; i++) pq.Push(new P { id = i, d = h[i] });
        for (int i = 0; i < a; i++)
        {
            var w = pq.Pop();
            var w2 = w.d - x;
            if (w2 > 0) { w.d = w2; h[w.id] = w2; pq.Push(w); }
            else h[w.id] = 0;
        }
        var hsum = h.Sum();
        Console.WriteLine(hsum <= b * y ? "Yes" : "No");
    }
}
0