結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー kakel-sankakel-san
提出日時 2022-10-14 23:19:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 2,052 bytes
コンパイル時間 4,895 ms
コンパイル使用メモリ 107,648 KB
実行使用メモリ 40,576 KB
最終ジャッジ日時 2024-06-26 17:10:23
合計ジャッジ時間 20,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,328 KB
testcase_01 AC 33 ms
19,328 KB
testcase_02 AC 32 ms
19,456 KB
testcase_03 AC 33 ms
19,072 KB
testcase_04 AC 338 ms
37,760 KB
testcase_05 AC 278 ms
34,560 KB
testcase_06 AC 72 ms
25,856 KB
testcase_07 AC 84 ms
26,240 KB
testcase_08 AC 304 ms
39,680 KB
testcase_09 AC 307 ms
32,768 KB
testcase_10 AC 229 ms
28,416 KB
testcase_11 AC 241 ms
34,432 KB
testcase_12 AC 209 ms
30,592 KB
testcase_13 AC 167 ms
35,712 KB
testcase_14 AC 215 ms
28,800 KB
testcase_15 AC 190 ms
35,840 KB
testcase_16 AC 231 ms
29,440 KB
testcase_17 AC 111 ms
33,536 KB
testcase_18 AC 175 ms
35,456 KB
testcase_19 AC 392 ms
39,936 KB
testcase_20 AC 101 ms
27,392 KB
testcase_21 AC 194 ms
30,464 KB
testcase_22 AC 218 ms
28,800 KB
testcase_23 AC 279 ms
37,888 KB
testcase_24 AC 428 ms
40,448 KB
testcase_25 AC 403 ms
40,576 KB
testcase_26 AC 395 ms
40,576 KB
testcase_27 AC 404 ms
40,576 KB
testcase_28 AC 415 ms
40,320 KB
testcase_29 AC 404 ms
40,320 KB
testcase_30 AC 394 ms
40,448 KB
testcase_31 AC 399 ms
40,448 KB
testcase_32 AC 393 ms
40,448 KB
testcase_33 AC 404 ms
40,448 KB
testcase_34 AC 331 ms
30,848 KB
testcase_35 AC 323 ms
30,336 KB
testcase_36 AC 340 ms
30,336 KB
testcase_37 AC 326 ms
30,080 KB
testcase_38 AC 335 ms
30,592 KB
testcase_39 AC 318 ms
30,080 KB
testcase_40 AC 323 ms
30,080 KB
testcase_41 AC 336 ms
29,952 KB
testcase_42 AC 313 ms
29,824 KB
testcase_43 AC 310 ms
29,696 KB
testcase_44 AC 215 ms
38,656 KB
testcase_45 AC 219 ms
38,912 KB
testcase_46 AC 218 ms
38,400 KB
testcase_47 AC 210 ms
38,272 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 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();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var h = NList;
        var map = NMap(m);

        Array.Sort(map, (l, r) => l[0].CompareTo(r[0]));
        var dp = new long[2][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(long.MinValue, n).ToArray();
        dp[1][0] = 0;
        foreach (var stair in map)
        {
            if (h[stair[0]] < h[stair[1]])
            {
                dp[0][stair[1]] = Math.Max(dp[0][stair[1]], dp[1][stair[0]] + h[stair[1]] - h[stair[0]]);
            }
            else
            {
                dp[1][stair[1]] = Math.Max(dp[1][stair[1]], Math.Max(dp[0][stair[0]], dp[1][stair[0]]));
            }
        }
        var ch = Math.Max(dp[0][n - 1], dp[1][n - 1]);
        if (ch < 0) ch = -1;

        Array.Sort(map, (l, r) => r[1].CompareTo(l[1]));
        dp = new long[2][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(long.MinValue, n).ToArray();
        dp[1][n - 1] = 0;
        foreach (var stair in map)
        {
            if (h[stair[0]] > h[stair[1]])
            {
                dp[0][stair[0]] = Math.Max(dp[0][stair[0]], dp[1][stair[1]] + h[stair[0]] - h[stair[1]]);
            }
            else
            {
                dp[1][stair[0]] = Math.Max(dp[1][stair[0]], Math.Max(dp[0][stair[1]], dp[1][stair[1]]));
            }
        }
        var ze = Math.Max(dp[0][0], dp[1][0]);
        if (ze < 0) ze = -1;
        WriteLine(ch);
        WriteLine(ze);
    }
}
0