結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー bluemeganebluemegane
提出日時 2021-11-13 14:35:10
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 3,552 bytes
コンパイル時間 12,522 ms
コンパイル使用メモリ 144,892 KB
実行使用メモリ 78,744 KB
最終ジャッジ日時 2023-08-18 06:57:23
合計ジャッジ時間 17,117 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,668 KB
testcase_01 AC 51 ms
28,780 KB
testcase_02 AC 51 ms
28,760 KB
testcase_03 AC 52 ms
28,696 KB
testcase_04 TLE -
testcase_05 TLE -
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 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 140 ms).
.NET 向け Microsoft (R) Build Engine バージョン 17.0.0-preview-21470-01+cb055d28f
Copyright (C) Microsoft Corporation.All rights reserved.

  プレビュー版の .NET を使用しています。https://aka.ms/dotnet-core-preview をご覧ください
  main -> /home/judge/data/code/bin/Release/net6.0/main.dll
  main -> /home/judge/data/code/bin/Release/net6.0/publish/

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
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 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]);
        var by = (long)b * y;
        line = Console.ReadLine().Trim().Split(' ');
        var h = Array.ConvertAll(line, long.Parse);
        getAns(n, a,  x, by, h);
    }
    static void getAns(int n, int a, int x, long by, long[] h)
    {
        if (calc(n, a, x, by, h, 0)) { Console.WriteLine(0); return; }
        var ng = 0L;
        var ok = 1000000000L;
        while (ok -ng > 1)
        {
            var mid = ng + (ok - ng) / 2;
            if (calc(n, a, x, by, h, (int)mid)) ok = mid;
            else ng = mid;
        }
        Console.WriteLine(ok);
    }
    static bool calc(int n, int a, int x, long by, long[] h, int k)
    {
        var pq = new PriorityQueue<long>(n + 100, 1);
        foreach (var z in h)
        {
            if (z - k > 0) pq.Push(z - k);
        }
        var na = a;
        while (na > 0)
        {
            if (pq.Count() == 0) break;
            var w = pq.Pop();
            var w2 = w - x;
            if (w2 > 0) pq.Push(w2);
            na--;
        }
        var hsum = pq.ToArray().Sum();
        return by >= hsum;
    }
}
0