結果

問題 No.1111 コード進行
ユーザー bluemeganebluemegane
提出日時 2021-05-03 08:35:55
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,672 bytes
コンパイル時間 4,638 ms
コンパイル使用メモリ 106,112 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-07-21 21:37:03
合計ジャッジ時間 13,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
19,968 KB
testcase_01 AC 30 ms
20,352 KB
testcase_02 AC 31 ms
19,968 KB
testcase_03 AC 29 ms
19,840 KB
testcase_04 AC 31 ms
20,096 KB
testcase_05 AC 37 ms
20,096 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 AC 35 ms
20,256 KB
testcase_28 AC 369 ms
22,016 KB
testcase_29 AC 187 ms
29,440 KB
testcase_30 WA -
testcase_31 AC 70 ms
19,968 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 275 ms
21,760 KB
testcase_35 AC 349 ms
24,064 KB
testcase_36 AC 636 ms
69,504 KB
testcase_37 AC 181 ms
31,616 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 432 ms
36,992 KB
testcase_42 AC 307 ms
43,264 KB
testcase_43 WA -
testcase_44 AC 130 ms
30,080 KB
testcase_45 AC 332 ms
46,208 KB
testcase_46 WA -
testcase_47 AC 1,261 ms
28,160 KB
testcase_48 AC 38 ms
19,940 KB
testcase_49 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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]);
            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