結果

問題 No.1111 コード進行
ユーザー ngtkanangtkana
提出日時 2020-03-11 00:07:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,387 bytes
コンパイル時間 1,161 ms
コンパイル使用メモリ 114,912 KB
実行使用メモリ 35,928 KB
最終ジャッジ日時 2024-11-15 23:51:57
合計ジャッジ時間 5,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,688 KB
testcase_01 AC 28 ms
18,944 KB
testcase_02 AC 28 ms
19,072 KB
testcase_03 AC 29 ms
19,072 KB
testcase_04 AC 29 ms
18,816 KB
testcase_05 AC 30 ms
19,456 KB
testcase_06 AC 36 ms
20,480 KB
testcase_07 AC 33 ms
20,096 KB
testcase_08 AC 31 ms
19,200 KB
testcase_09 AC 32 ms
19,584 KB
testcase_10 AC 32 ms
21,120 KB
testcase_11 AC 30 ms
19,008 KB
testcase_12 AC 34 ms
20,224 KB
testcase_13 AC 31 ms
19,584 KB
testcase_14 AC 37 ms
21,504 KB
testcase_15 AC 30 ms
19,108 KB
testcase_16 AC 35 ms
20,736 KB
testcase_17 AC 32 ms
21,120 KB
testcase_18 AC 30 ms
19,064 KB
testcase_19 AC 30 ms
19,068 KB
testcase_20 AC 30 ms
19,328 KB
testcase_21 AC 29 ms
18,944 KB
testcase_22 AC 33 ms
22,400 KB
testcase_23 AC 31 ms
19,712 KB
testcase_24 AC 31 ms
19,712 KB
testcase_25 AC 38 ms
22,144 KB
testcase_26 AC 34 ms
20,096 KB
testcase_27 AC 30 ms
19,120 KB
testcase_28 AC 71 ms
35,928 KB
testcase_29 AC 50 ms
35,200 KB
testcase_30 AC 82 ms
35,192 KB
testcase_31 AC 34 ms
23,680 KB
testcase_32 AC 114 ms
35,328 KB
testcase_33 AC 116 ms
35,072 KB
testcase_34 AC 52 ms
34,816 KB
testcase_35 AC 69 ms
35,696 KB
testcase_36 AC 139 ms
35,888 KB
testcase_37 AC 59 ms
31,104 KB
testcase_38 AC 61 ms
27,904 KB
testcase_39 AC 161 ms
35,328 KB
testcase_40 AC 135 ms
35,672 KB
testcase_41 AC 86 ms
35,840 KB
testcase_42 AC 80 ms
35,072 KB
testcase_43 AC 98 ms
34,944 KB
testcase_44 AC 45 ms
29,312 KB
testcase_45 AC 72 ms
35,464 KB
testcase_46 AC 31 ms
19,200 KB
testcase_47 AC 226 ms
25,472 KB
testcase_48 AC 31 ms
19,456 KB
testcase_49 AC 32 ms
19,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

static class NagataKanaIsAGenius {
    public static void Main() {
        int[]qmk=Console.ReadLine().Split().Select(int.Parse).ToArray();
        int q=qmk[0];
        int m=qmk[1];
        int k=qmk[2];
        int n=0;
        Tuple<int,int,int>[]prog=Enumerable.Range(0,m).Select(_=>{
            int[]uvw=Console.ReadLine().Split().Select(int.Parse).ToArray();
            int u=uvw[0]-1;
            int v=uvw[1]-1;
            int w=uvw[2];
            if(n<u)n=u;
            if(n<v)n=v;
            return new Tuple<int,int,int>(u,v,w);
        }).ToArray();
        n++;
        int[]dp=new int[(k+1)*n];
        for(int i=0;i<n;i++)dp[i]=1;
        for(int i=0;i<q-1;i++){
            int[]new_dp=new int[(k+1)*n];
            for(int j=k;j>=0;j--){
                foreach(Tuple<int,int,int>uvw in prog){
                    int u=uvw.Item1;
                    int v=uvw.Item2;
                    int w=uvw.Item3;
                    if(w<=j){
                        AddAssign(ref new_dp[j*n+u],dp[(j-w)*n+v]);
                    }
                }
            }
            dp=new_dp;
        }
        int ans=0;
        for(int i=0;i<n;i++){
            AddAssign(ref ans,dp[k*n+i]);
        }
        Console.WriteLine(ans);
    }
    static int Mod=1000000007;
    static void AddAssign(ref int x,int y){x+=y;if(Mod<=x)x-=Mod;}
}
0