結果

問題 No.1015 おつりは要らないです
ユーザー bluemeganebluemegane
提出日時 2021-05-03 22:41:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,991 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 66,004 KB
実行使用メモリ 38,612 KB
最終ジャッジ日時 2023-09-29 18:51:58
合計ジャッジ時間 10,811 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,716 KB
testcase_01 AC 57 ms
22,788 KB
testcase_02 AC 57 ms
20,716 KB
testcase_03 AC 56 ms
20,804 KB
testcase_04 AC 57 ms
20,752 KB
testcase_05 AC 57 ms
20,760 KB
testcase_06 AC 57 ms
22,808 KB
testcase_07 AC 57 ms
20,624 KB
testcase_08 AC 56 ms
20,708 KB
testcase_09 AC 57 ms
20,764 KB
testcase_10 AC 306 ms
36,532 KB
testcase_11 AC 315 ms
36,720 KB
testcase_12 AC 299 ms
36,212 KB
testcase_13 AC 306 ms
36,544 KB
testcase_14 AC 317 ms
34,972 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 266 ms
36,284 KB
testcase_21 AC 270 ms
34,184 KB
testcase_22 AC 270 ms
34,112 KB
testcase_23 AC 260 ms
35,892 KB
testcase_24 AC 274 ms
34,364 KB
testcase_25 AC 264 ms
34,176 KB
testcase_26 AC 264 ms
34,152 KB
testcase_27 AC 265 ms
34,124 KB
testcase_28 AC 264 ms
36,104 KB
testcase_29 AC 267 ms
36,388 KB
testcase_30 AC 57 ms
22,788 KB
testcase_31 AC 98 ms
30,272 KB
testcase_32 AC 98 ms
30,212 KB
testcase_33 AC 123 ms
38,244 KB
testcase_34 AC 57 ms
20,744 KB
testcase_35 AC 58 ms
22,800 KB
testcase_36 AC 56 ms
20,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using static System.Math;
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
{
	public static int n, x, y, z;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
         n = int.Parse(line[0]);
        x = int.Parse(line[1]);
        y = int.Parse(line[2]);
        z = int.Parse(line[3]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
		getAns(a);
    }
	static void getAns (int[] a)
    {
		var pq = new PriorityQueue<int>(n, 1);
		for (int i = 0; i < n; i++) pq.Push(a[i]);
        while (pq.Count() > 0)
        {
			var t = pq.Pop();
			if (z > 0)
			{
				if (t >= 10000)
				{
					var t1 = t / 10000;
					var t2 = Min(z, t1);
					z -= t2;
					t -= t1 * 10000;
					pq.Push(t);
				}
				else z--;
			}
			else if (y > 0)
            {
				if (t >= 5000)
				{
					var t1 = t / 5000;
					var t2 = Min(y, t1);
					y -= t2;
					t -= t1 * 5000;
					pq.Push(t);
				}
				else y--;
			}
			else if (x > 0)
            {
				if (t >= 1000)
				{
					var t1 = t / 1000;
					var t2 = Min(x, t1);
					x -= t2;
					t -= t1 * 1000;
					pq.Push(t);
				}
				else x--;
			}
			else
            {
                Console.WriteLine("No");
				return;
            }

		}
        Console.WriteLine("Yes");
    }
}
0