結果

問題 No.1668 Grayscale
ユーザー kakel-sankakel-san
提出日時 2024-01-05 11:23:59
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,018 ms / 4,000 ms
コード長 1,598 bytes
コンパイル時間 9,919 ms
コンパイル使用メモリ 170,808 KB
実行使用メモリ 186,952 KB
最終ジャッジ日時 2024-09-27 19:01:28
合計ジャッジ時間 13,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,580 KB
testcase_01 AC 57 ms
30,464 KB
testcase_02 AC 57 ms
30,592 KB
testcase_03 AC 58 ms
30,592 KB
testcase_04 AC 58 ms
30,712 KB
testcase_05 AC 56 ms
30,464 KB
testcase_06 AC 485 ms
151,664 KB
testcase_07 AC 502 ms
151,844 KB
testcase_08 AC 179 ms
57,264 KB
testcase_09 AC 1,018 ms
151,928 KB
testcase_10 AC 304 ms
71,692 KB
testcase_11 AC 59 ms
31,104 KB
testcase_12 AC 59 ms
30,948 KB
testcase_13 AC 87 ms
41,600 KB
testcase_14 AC 168 ms
62,852 KB
testcase_15 AC 117 ms
49,920 KB
testcase_16 AC 105 ms
44,920 KB
testcase_17 AC 84 ms
38,400 KB
testcase_18 AC 63 ms
30,456 KB
testcase_19 AC 58 ms
30,712 KB
testcase_20 AC 60 ms
30,848 KB
testcase_21 AC 60 ms
30,976 KB
testcase_22 AC 58 ms
30,592 KB
testcase_23 AC 57 ms
186,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w, n) = (c[0], c[1], c[2]);
        var map = NArr(h);
        var tree = new List<(int to, int len)>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<(int to, int len)>();
        for (var i = 0; i + 1 < n; ++i) tree[i].Add((i + 1, 0));
        for (var i = 0; i < h; ++i) for (var j = 0; j + 1 < w; ++j)
        {
            if (map[i][j] < map[i][j + 1]) tree[map[i][j] - 1].Add((map[i][j + 1] - 1, 1));
            else if (map[i][j] > map[i][j + 1]) tree[map[i][j + 1] - 1].Add((map[i][j] - 1, 1));
        }
        for (var i = 0; i + 1 < h; ++i) for (var j = 0; j < w; ++j)
        {
            if (map[i][j] < map[i + 1][j]) tree[map[i][j] - 1].Add((map[i + 1][j] - 1, 1));
            else if (map[i][j] > map[i + 1][j]) tree[map[i + 1][j] - 1].Add((map[i][j] - 1, 1));
        }
        var len = new int[n];
        for (var i = 0; i + 1 < n; ++i)
        {
            foreach (var next in tree[i])
            {
                len[next.to] = Math.Max(len[next.to], len[i] + next.len);
            }
        }
        WriteLine(new HashSet<int>(len).Count);
    }
}
0