結果

問題 No.1703 Much Matching
ユーザー kakel-sankakel-san
提出日時 2023-12-30 20:16:36
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 8,131 ms
コンパイル使用メモリ 168,064 KB
実行使用メモリ 193,944 KB
最終ジャッジ日時 2024-09-27 16:47:11
合計ジャッジ時間 14,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,208 KB
testcase_01 AC 52 ms
30,072 KB
testcase_02 AC 54 ms
30,336 KB
testcase_03 AC 55 ms
32,000 KB
testcase_04 AC 56 ms
32,000 KB
testcase_05 AC 58 ms
33,280 KB
testcase_06 AC 252 ms
63,488 KB
testcase_07 AC 65 ms
33,912 KB
testcase_08 AC 251 ms
64,008 KB
testcase_09 AC 302 ms
64,772 KB
testcase_10 AC 87 ms
41,856 KB
testcase_11 AC 102 ms
48,128 KB
testcase_12 AC 66 ms
33,656 KB
testcase_13 AC 159 ms
58,860 KB
testcase_14 AC 60 ms
31,744 KB
testcase_15 AC 99 ms
46,336 KB
testcase_16 AC 170 ms
59,208 KB
testcase_17 AC 193 ms
59,064 KB
testcase_18 AC 55 ms
31,488 KB
testcase_19 AC 396 ms
70,176 KB
testcase_20 AC 88 ms
43,136 KB
testcase_21 AC 421 ms
75,304 KB
testcase_22 AC 182 ms
59,568 KB
testcase_23 AC 157 ms
58,812 KB
testcase_24 AC 55 ms
31,232 KB
testcase_25 AC 65 ms
35,840 KB
testcase_26 AC 134 ms
58,964 KB
testcase_27 AC 209 ms
62,852 KB
testcase_28 AC 358 ms
70,440 KB
testcase_29 AC 100 ms
49,920 KB
testcase_30 AC 142 ms
58,868 KB
testcase_31 AC 61 ms
33,536 KB
testcase_32 AC 218 ms
62,956 KB
testcase_33 AC 153 ms
59,196 KB
testcase_34 AC 61 ms
33,792 KB
testcase_35 AC 76 ms
40,192 KB
testcase_36 AC 742 ms
91,668 KB
testcase_37 AC 63 ms
193,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 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 (n, m, q) = (c[0], c[1], c[2]);
        var map = NArr(q);
        WriteLine(Pair(n, m, q, map));
    }
    static int Pair(int n, int m, int q, int[][] map)
    {
        var ex = new bool[n, m];
        foreach (var pair in map) ex[pair[0] - 1, pair[1] - 1] = true;
        var dp = new int[m];
        for (var i = 0; i < n; ++i)
        {
            var ndp = (int[]) dp.Clone();
            for (var j = 0; j < m; ++j) if (ex[i, j])
            {
                if (j == 0) ndp[j] = 1;
                else ndp[j] = dp[j - 1] + 1;
            }
            for (var j = 1; j < m; ++j) ndp[j] = Math.Max(ndp[j - 1], ndp[j]);
            dp = ndp;
        }
        return dp[^1];
    }
}
0