結果

問題 No.1111 コード進行
ユーザー sca1lsca1l
提出日時 2020-07-20 22:10:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 2,083 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 80,396 KB
実行使用メモリ 193,016 KB
最終ジャッジ日時 2024-06-06 21:12:19
合計ジャッジ時間 18,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
189,728 KB
testcase_01 AC 221 ms
188,804 KB
testcase_02 AC 241 ms
189,496 KB
testcase_03 AC 227 ms
188,336 KB
testcase_04 AC 223 ms
188,328 KB
testcase_05 AC 224 ms
188,632 KB
testcase_06 AC 264 ms
190,336 KB
testcase_07 AC 286 ms
190,852 KB
testcase_08 AC 271 ms
190,260 KB
testcase_09 AC 297 ms
190,244 KB
testcase_10 AC 241 ms
189,452 KB
testcase_11 AC 273 ms
190,104 KB
testcase_12 AC 286 ms
191,192 KB
testcase_13 AC 241 ms
189,572 KB
testcase_14 AC 294 ms
191,100 KB
testcase_15 AC 245 ms
190,384 KB
testcase_16 AC 290 ms
190,300 KB
testcase_17 AC 237 ms
189,832 KB
testcase_18 AC 234 ms
189,792 KB
testcase_19 AC 222 ms
188,688 KB
testcase_20 AC 250 ms
189,792 KB
testcase_21 AC 251 ms
189,576 KB
testcase_22 AC 250 ms
189,508 KB
testcase_23 AC 282 ms
189,880 KB
testcase_24 AC 247 ms
189,540 KB
testcase_25 AC 338 ms
191,116 KB
testcase_26 AC 300 ms
190,724 KB
testcase_27 AC 267 ms
189,708 KB
testcase_28 AC 258 ms
188,520 KB
testcase_29 AC 268 ms
189,844 KB
testcase_30 AC 306 ms
190,776 KB
testcase_31 AC 259 ms
190,832 KB
testcase_32 AC 330 ms
190,948 KB
testcase_33 AC 382 ms
193,016 KB
testcase_34 AC 236 ms
189,320 KB
testcase_35 AC 237 ms
189,536 KB
testcase_36 AC 272 ms
190,120 KB
testcase_37 AC 293 ms
191,132 KB
testcase_38 AC 367 ms
191,332 KB
testcase_39 AC 445 ms
190,988 KB
testcase_40 AC 490 ms
190,832 KB
testcase_41 AC 265 ms
189,400 KB
testcase_42 AC 319 ms
190,940 KB
testcase_43 AC 492 ms
191,116 KB
testcase_44 AC 252 ms
189,628 KB
testcase_45 AC 269 ms
189,832 KB
testcase_46 AC 332 ms
191,184 KB
testcase_47 AC 323 ms
190,836 KB
testcase_48 AC 342 ms
190,784 KB
testcase_49 AC 296 ms
190,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    
    static final int MOD = (int)1e9+7;
    static final int MAX = 301;
    static int n;
    static int m;
    static int k;
    static ArrayList<Integer>[] graph;
    static ArrayList<Integer>[] complexity;
    static int[][][] memo;
    
    public static int dfs(int now, int cmp, int cnt){
        if(cmp <= k && memo[now][cmp][cnt] != -1){
            return memo[now][cmp][cnt];
        }
        
        if(cnt == n || cmp > k){
            //System.out.println(cnt + " : " + cmp);
            if(cnt == n && cmp == k){
                return 1;
            }else{
                return 0;
            }
        }
        
        int ret = 0;
        for(int i=0; i<graph[now].size(); i++){
            int next = graph[now].get(i);
            int cmpsum = complexity[now].get(i) + cmp;
            ret += dfs(next, cmpsum, cnt+1);
            ret %= MOD;
        }
        
        memo[now][cmp][cnt] = ret;
        return memo[now][cmp][cnt];
    }
    
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        n = Integer.parseInt(sc.next());
        m = Integer.parseInt(sc.next());
        k = Integer.parseInt(sc.next());
        
        memo = new int[MAX][MAX][MAX];
        for(int i=0; i<MAX; i++){
            for(int j=0; j<MAX; j++){
                Arrays.fill(memo[i][j], -1);
            }
        }
        
        graph = new ArrayList[MAX];
        complexity = new ArrayList[MAX];
        for(int i=0; i<MAX; i++){
            graph[i] = new ArrayList<>();
            complexity[i] = new ArrayList<>();
        }
        for(int i=0; i<m; i++){
            int p = Integer.parseInt(sc.next())-1;
            int q = Integer.parseInt(sc.next())-1;
            int c = Integer.parseInt(sc.next());
            
            graph[p].add(q);
            complexity[p].add(c);
        }
        
        int ans = 0;
        for(int i=0; i<MAX; i++){
            ans += dfs(i, 0, 1);
            ans %= MOD;
        }
        
        System.out.println(ans);
    }
}
0