結果

問題 No.1375 Divide and Update
ユーザー kakel-sankakel-san
提出日時 2024-07-26 00:00:33
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,541 bytes
コンパイル時間 10,459 ms
コンパイル使用メモリ 167,580 KB
実行使用メモリ 229,356 KB
最終ジャッジ日時 2024-07-26 00:00:55
合計ジャッジ時間 15,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,848 KB
testcase_01 AC 59 ms
31,104 KB
testcase_02 AC 59 ms
30,960 KB
testcase_03 AC 61 ms
30,976 KB
testcase_04 AC 59 ms
31,100 KB
testcase_05 AC 60 ms
30,720 KB
testcase_06 AC 61 ms
30,848 KB
testcase_07 AC 59 ms
30,848 KB
testcase_08 AC 60 ms
30,976 KB
testcase_09 AC 61 ms
30,848 KB
testcase_10 AC 137 ms
68,076 KB
testcase_11 AC 129 ms
67,448 KB
testcase_12 AC 99 ms
51,712 KB
testcase_13 AC 94 ms
49,400 KB
testcase_14 AC 143 ms
72,172 KB
testcase_15 AC 149 ms
71,936 KB
testcase_16 AC 141 ms
71,424 KB
testcase_17 AC 143 ms
71,416 KB
testcase_18 AC 148 ms
78,976 KB
testcase_19 AC 143 ms
78,464 KB
testcase_20 AC 130 ms
229,356 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, x, y) = (c[0], c[1], c[2]);
        var a = NList;
        var xcum = new long[n + 1];
        for (var i = 0; i < n; ++i) xcum[i + 1] = xcum[i] + x - a[i];
        var ycum = new long[n + 1];
        for (var i = 0; i < n; ++i) ycum[i + 1] = ycum[i] + y - a[i];
        var left = new long[n];
        {
            var min = xcum[0];
            for (var i = 0; i < n; ++i)
            {
                left[i] = xcum[i + 1] - min;
                min = Math.Min(min, xcum[i + 1]);
                if (i > 0) left[i] = Math.Max(left[i - 1], left[i]);
            }
        }
        var right = new long[n];
        {
            var max = ycum[n];
            for (var i = n - 1; i >= 0; --i)
            {
                right[i] = max - ycum[i];
                max = Math.Max(max, ycum[i]);
                if (i + 1 < n) right[i] = Math.Max(right[i], right[i + 1]);
            }
        }
        var sum = 0L;
        foreach (var ai in a) sum += ai;
        var ans = new long[n - 2];
        for (var i = 1; i + 1 < n; ++i) ans[i - 1] = sum + left[i - 1] + right[i + 1];
        WriteLine(string.Join("\n", ans));
    }
}
0