結果

問題 No.1071 ベホマラー
ユーザー mbanmban
提出日時 2020-06-05 21:40:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 2,388 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 116,276 KB
実行使用メモリ 38,708 KB
最終ジャッジ日時 2024-05-09 20:28:06
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,260 KB
testcase_01 AC 29 ms
19,200 KB
testcase_02 AC 31 ms
19,200 KB
testcase_03 AC 29 ms
19,200 KB
testcase_04 AC 31 ms
19,328 KB
testcase_05 AC 30 ms
19,328 KB
testcase_06 AC 30 ms
19,072 KB
testcase_07 AC 30 ms
18,944 KB
testcase_08 AC 28 ms
19,200 KB
testcase_09 AC 29 ms
19,200 KB
testcase_10 AC 78 ms
27,904 KB
testcase_11 AC 77 ms
27,648 KB
testcase_12 AC 61 ms
24,320 KB
testcase_13 AC 71 ms
26,752 KB
testcase_14 AC 79 ms
28,160 KB
testcase_15 AC 86 ms
29,696 KB
testcase_16 AC 86 ms
29,696 KB
testcase_17 AC 88 ms
29,440 KB
testcase_18 AC 90 ms
29,440 KB
testcase_19 AC 86 ms
29,440 KB
testcase_20 AC 87 ms
34,688 KB
testcase_21 AC 83 ms
38,708 KB
testcase_22 AC 86 ms
34,560 KB
testcase_23 AC 82 ms
38,700 KB
testcase_24 AC 85 ms
29,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using CompLib.Util;

public class Program
{

    public void Solve()
    {
        var sc = new Scanner();
        int n = sc.NextInt();
        int k = sc.NextInt();
        long x = sc.NextInt();
        long y = sc.NextInt();

        int[] a = sc.IntArray();

        long[] h = new long[n];
        for (int i = 0; i < n; i++)
        {
            h[i] = (a[i] - 2 + k) / k;
        }

        // t <= n

        // xを t回する方が y1回の方が少ない
        // x*t <= y

        // 

        Array.Sort(h, (l, r) => r.CompareTo(l));

        long maxT = y / x;

        if (maxT >= n)
        {
            Console.WriteLine(h.Sum());
            return;
        }

        long ans = 0;

        long t = 0;

        for (int i = 0; i < maxT; i++)
        {
            t += h[i];
        }

        ans = y * h[maxT] + x * (t - (h[maxT] * maxT));

        Console.WriteLine(ans);
    }

    public static void Main(string[] args) => new Program().Solve();
}

namespace CompLib.Util
{
    using System;
    using System.Linq;

    class Scanner
    {
        private string[] _line;
        private int _index;
        private const char Separator = ' ';

        public Scanner()
        {
            _line = new string[0];
            _index = 0;
        }

        public string Next()
        {
            while (_index >= _line.Length)
            {
                _line = Console.ReadLine().Split(Separator);
                _index = 0;
            }

            return _line[_index++];
        }

        public int NextInt() => int.Parse(Next());
        public long NextLong() => long.Parse(Next());
        public double NextDouble() => double.Parse(Next());
        public decimal NextDecimal() => decimal.Parse(Next());
        public char NextChar() => Next()[0];
        public char[] NextCharArray() => Next().ToCharArray();

        public string[] Array()
        {
            _line = Console.ReadLine().Split(Separator);
            _index = _line.Length;
            return _line;
        }

        public int[] IntArray() => Array().Select(int.Parse).ToArray();
        public long[] LongArray() => Array().Select(long.Parse).ToArray();
        public double[] DoubleArray() => Array().Select(double.Parse).ToArray();
        public decimal[] DecimalArray() => Array().Select(decimal.Parse).ToArray();
    }
}
0