結果

問題 No.1111 コード進行
ユーザー bluemeganebluemegane
提出日時 2021-05-03 10:36:43
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,732 bytes
コンパイル時間 2,558 ms
コンパイル使用メモリ 113,268 KB
実行使用メモリ 72,804 KB
最終ジャッジ日時 2024-07-21 23:22:30
合計ジャッジ時間 11,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
20,096 KB
testcase_01 AC 30 ms
19,840 KB
testcase_02 AC 29 ms
20,480 KB
testcase_03 AC 29 ms
20,096 KB
testcase_04 AC 31 ms
20,224 KB
testcase_05 AC 37 ms
20,352 KB
testcase_06 AC 49 ms
20,352 KB
testcase_07 AC 46 ms
20,480 KB
testcase_08 AC 36 ms
20,040 KB
testcase_09 AC 41 ms
20,540 KB
testcase_10 AC 52 ms
20,500 KB
testcase_11 AC 36 ms
20,388 KB
testcase_12 AC 49 ms
20,224 KB
testcase_13 AC 41 ms
20,124 KB
testcase_14 AC 60 ms
20,736 KB
testcase_15 AC 34 ms
20,116 KB
testcase_16 AC 51 ms
20,864 KB
testcase_17 AC 52 ms
19,980 KB
testcase_18 AC 33 ms
20,224 KB
testcase_19 AC 33 ms
20,360 KB
testcase_20 AC 36 ms
20,352 KB
testcase_21 AC 29 ms
19,840 KB
testcase_22 AC 61 ms
20,992 KB
testcase_23 AC 42 ms
20,224 KB
testcase_24 AC 42 ms
20,244 KB
testcase_25 AC 63 ms
21,888 KB
testcase_26 WA -
testcase_27 AC 33 ms
20,132 KB
testcase_28 AC 351 ms
22,144 KB
testcase_29 AC 184 ms
29,440 KB
testcase_30 WA -
testcase_31 AC 68 ms
20,296 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 263 ms
21,760 KB
testcase_35 AC 334 ms
24,320 KB
testcase_36 AC 679 ms
69,632 KB
testcase_37 AC 173 ms
32,000 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 427 ms
36,864 KB
testcase_42 AC 288 ms
42,880 KB
testcase_43 WA -
testcase_44 AC 124 ms
29,824 KB
testcase_45 AC 317 ms
46,208 KB
testcase_46 WA -
testcase_47 AC 1,254 ms
27,648 KB
testcase_48 AC 37 ms
20,196 KB
testcase_49 AC 37 ms
20,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public class P
{
    public int q { get; set; }
    public int c { get; set; }
}

public class Hello
{
    public static int n, m, k;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        n = int.Parse(line[0]);
        m = int.Parse(line[1]);
        k = int.Parse(line[2]);
        var ps = new List<P>[301];
        for (int i = 0; i < 301; i++) ps[i] = new List<P>();
        var hs = new HashSet<int>();
        for (int i = 0; i < m; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var p = int.Parse(line[0]);
            var q = int.Parse(line[1]);
            var c = int.Parse(line[2]);
            if (c <= k)
            {
                ps[p].Add(new P { q = q, c = c });
                hs.Add(p);
            }
        }
        var plist = hs.ToArray();
        Array.Sort(plist);
        getAns(ps, plist);
    }
    static void getAns(List<P>[] ps, int[] plist)
    {
        var dp = new int[n, 301, k + 1];
        foreach (var x in plist)
            foreach (var y in ps[x])
                dp[1, y.q, y.c]++;
        for (int i = 0; i < n - 1; i++)
        {
            for (int j = 1; j <= 300; j++)
            {
                for (int L = 0; L <= k; L++)
                {
                    foreach (var x in ps[j])
                    {
                        var ww = L + x.c;
                        if (ww <= k) dp[i + 1, x.q, ww] += dp[i, j, L];
                    }
                }
            }
        }
        var ans = 0;
        for (int i = 1; i <= 300; i++)
            ans += dp[n - 1, i, k];
        Console.WriteLine(ans);
    }
}
0