結果

問題 No.1872 Dictionary Order
ユーザー kakel-sankakel-san
提出日時 2023-11-29 00:08:48
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 2,226 bytes
コンパイル時間 10,613 ms
コンパイル使用メモリ 168,324 KB
実行使用メモリ 187,924 KB
最終ジャッジ日時 2024-09-26 13:12:51
合計ジャッジ時間 15,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
51,968 KB
testcase_01 AC 68 ms
32,000 KB
testcase_02 AC 134 ms
41,344 KB
testcase_03 AC 77 ms
33,536 KB
testcase_04 AC 179 ms
46,584 KB
testcase_05 AC 69 ms
32,512 KB
testcase_06 AC 108 ms
38,528 KB
testcase_07 AC 87 ms
35,584 KB
testcase_08 AC 66 ms
31,084 KB
testcase_09 AC 81 ms
34,296 KB
testcase_10 AC 93 ms
36,480 KB
testcase_11 AC 129 ms
40,568 KB
testcase_12 AC 79 ms
33,792 KB
testcase_13 AC 78 ms
33,792 KB
testcase_14 AC 128 ms
40,312 KB
testcase_15 AC 145 ms
42,368 KB
testcase_16 AC 71 ms
32,512 KB
testcase_17 AC 96 ms
37,248 KB
testcase_18 AC 102 ms
38,528 KB
testcase_19 AC 89 ms
35,840 KB
testcase_20 AC 81 ms
34,560 KB
testcase_21 AC 115 ms
39,040 KB
testcase_22 AC 175 ms
47,612 KB
testcase_23 AC 91 ms
37,888 KB
testcase_24 AC 80 ms
35,828 KB
testcase_25 AC 117 ms
40,812 KB
testcase_26 AC 79 ms
35,968 KB
testcase_27 AC 112 ms
40,448 KB
testcase_28 AC 160 ms
45,296 KB
testcase_29 AC 171 ms
46,848 KB
testcase_30 AC 64 ms
31,616 KB
testcase_31 AC 188 ms
49,132 KB
testcase_32 AC 64 ms
31,360 KB
testcase_33 AC 60 ms
30,336 KB
testcase_34 AC 64 ms
187,924 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 (n, m) = (c[0], c[1]);
        var a = NList;
        var p = NList;
        WriteLine(Order(n, m, a, p));
    }
    static string Order(int n, int m, int[] a, int[] p)
    {
        var visited = new bool[n + 1, m + 1];
        visited[0, 0] = true;
        for (var i = 0; i < n; ++i) for (var j = 0; j <= m; ++j)
        {
            if (visited[i, j])
            {
                visited[i + 1, j] = true;
                if (j + a[i] <= m) visited[i + 1, j + a[i]] = true;
            }
        }
        if (!visited[n, m])
        {
            return "-1";
        }
        var next = new int[n + 1][];
        for (var i = 0; i < next.Length; ++i) next[i] = Enumerable.Repeat(-1, m + 1).ToArray();
        next[n][m] = 0;
        for (var j = m; j >= 0; --j) for (var i = n; i > 0; --i)
        {
            if (!visited[i, j]) continue;
            if (next[i][j] < 0) continue;
            if (visited[i - 1, j])
            {
                if (next[i - 1][j] == -1) next[i - 1][j] = next[i][j];
                else if (j < m && p[next[i - 1][j]] > p[next[i][j]]) next[i - 1][j] = next[i][j];
            }
            if (j - a[i - 1] >= 0 && visited[i - 1, j - a[i - 1]])
            {
                if (next[i - 1][j - a[i - 1]] == -1) next[i - 1][j - a[i - 1]] = i - 1;
                else if (p[next[i - 1][j - a[i - 1]]] > p[next[i][j]]) next[i - 1][j - a[i - 1]] = i - 1;
            }
        }
        var ans = new List<int>();
        var x = 0;
        var y = 0;
        while (y < m)
        {
            var b = next[x][y];
            ans.Add(b + 1);
            x = b + 1;
            y += a[b];
        }
        return $"{ans.Count}\n{string.Join(" ", ans)}";
    }
}
0