結果

問題 No.156 キャンディー・ボックス
ユーザー bluemeganebluemegane
提出日時 2018-10-24 09:46:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 907 ms / 2,000 ms
コード長 2,958 bytes
コンパイル時間 2,492 ms
コンパイル使用メモリ 107,532 KB
実行使用メモリ 27,072 KB
最終ジャッジ日時 2023-09-19 03:46:14
合計ジャッジ時間 8,072 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
20,728 KB
testcase_01 AC 58 ms
18,604 KB
testcase_02 AC 59 ms
22,708 KB
testcase_03 AC 58 ms
20,772 KB
testcase_04 AC 59 ms
22,924 KB
testcase_05 AC 74 ms
26,960 KB
testcase_06 AC 98 ms
25,032 KB
testcase_07 AC 88 ms
26,864 KB
testcase_08 AC 79 ms
24,836 KB
testcase_09 AC 70 ms
26,896 KB
testcase_10 AC 85 ms
22,884 KB
testcase_11 AC 69 ms
22,904 KB
testcase_12 AC 99 ms
26,980 KB
testcase_13 AC 83 ms
26,976 KB
testcase_14 AC 70 ms
24,932 KB
testcase_15 AC 89 ms
26,868 KB
testcase_16 AC 72 ms
26,960 KB
testcase_17 AC 82 ms
24,936 KB
testcase_18 AC 73 ms
26,992 KB
testcase_19 AC 75 ms
26,972 KB
testcase_20 AC 58 ms
20,812 KB
testcase_21 AC 63 ms
24,980 KB
testcase_22 AC 72 ms
24,868 KB
testcase_23 AC 66 ms
26,888 KB
testcase_24 AC 59 ms
20,756 KB
testcase_25 AC 58 ms
22,696 KB
testcase_26 AC 59 ms
20,732 KB
testcase_27 AC 58 ms
20,648 KB
testcase_28 AC 57 ms
20,684 KB
testcase_29 AC 58 ms
22,760 KB
testcase_30 AC 115 ms
24,944 KB
testcase_31 AC 123 ms
26,988 KB
testcase_32 AC 877 ms
24,828 KB
testcase_33 AC 907 ms
27,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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;
    /// <summary>
    /// Priority Queue with custom comparer
    /// </summary>
    public PriorityQueue(int maxSize, IComparer<T> comparer)
    {
        _heap = new T[maxSize];
        _comparer = comparer;
    }
    /// <summary>
    /// Priority queue
    /// </summary>
    /// <param name="maxSize">max size</param>
    /// <param name="type">0: asc, 1:desc</param>
    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
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var pq = new PriorityQueue<int>(n);
        line = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < n; i++) pq.Push(int.Parse(line[i]));
        var ans = 0;
        var count = 0;
        while (true)
        {
            var w = pq.Pop();
            if (w == 1) { count++; ans++; }
            else { count++; pq.Push(w - 1); }
            if (count == m) { Console.WriteLine(ans); break; }
        }
    }
}
0