結果

問題 No.1111 コード進行
ユーザー ks2mks2m
提出日時 2020-07-10 22:02:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 1,679 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 78,572 KB
実行使用メモリ 257,224 KB
最終ジャッジ日時 2024-10-11 09:13:57
合計ジャッジ時間 11,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,284 KB
testcase_01 AC 53 ms
37,288 KB
testcase_02 AC 52 ms
36,636 KB
testcase_03 AC 53 ms
36,780 KB
testcase_04 AC 55 ms
37,100 KB
testcase_05 AC 62 ms
39,224 KB
testcase_06 AC 84 ms
45,964 KB
testcase_07 AC 80 ms
45,132 KB
testcase_08 AC 82 ms
39,376 KB
testcase_09 AC 81 ms
40,740 KB
testcase_10 AC 81 ms
44,912 KB
testcase_11 AC 60 ms
38,288 KB
testcase_12 AC 96 ms
45,632 KB
testcase_13 AC 63 ms
40,184 KB
testcase_14 AC 113 ms
46,524 KB
testcase_15 AC 58 ms
37,508 KB
testcase_16 AC 112 ms
46,532 KB
testcase_17 AC 61 ms
44,620 KB
testcase_18 AC 55 ms
38,424 KB
testcase_19 AC 54 ms
37,540 KB
testcase_20 AC 56 ms
39,124 KB
testcase_21 AC 54 ms
37,020 KB
testcase_22 AC 72 ms
49,008 KB
testcase_23 AC 61 ms
39,656 KB
testcase_24 AC 65 ms
44,468 KB
testcase_25 AC 125 ms
51,812 KB
testcase_26 AC 108 ms
46,200 KB
testcase_27 AC 63 ms
37,796 KB
testcase_28 AC 253 ms
181,208 KB
testcase_29 AC 177 ms
102,736 KB
testcase_30 AC 224 ms
122,948 KB
testcase_31 AC 77 ms
52,880 KB
testcase_32 AC 266 ms
122,896 KB
testcase_33 AC 220 ms
81,576 KB
testcase_34 AC 193 ms
122,712 KB
testcase_35 AC 211 ms
138,772 KB
testcase_36 AC 417 ms
177,684 KB
testcase_37 AC 187 ms
67,528 KB
testcase_38 AC 173 ms
67,184 KB
testcase_39 AC 315 ms
122,780 KB
testcase_40 AC 337 ms
147,416 KB
testcase_41 AC 263 ms
181,264 KB
testcase_42 AC 245 ms
102,564 KB
testcase_43 AC 232 ms
82,396 KB
testcase_44 AC 149 ms
67,744 KB
testcase_45 AC 246 ms
122,716 KB
testcase_46 AC 105 ms
41,756 KB
testcase_47 AC 840 ms
257,224 KB
testcase_48 AC 123 ms
45,244 KB
testcase_49 AC 126 ms
45,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int k = Integer.parseInt(sa[2]);
		int max = 301;
		List<List<Obj>> list = new ArrayList<>(max);
		for (int i = 0; i < max; i++) {
			list.add(new ArrayList<>());
		}
		Set<Integer> set = new HashSet<>();
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			int p = Integer.parseInt(sa[0]);
			Obj o = new Obj();
			o.q = Integer.parseInt(sa[1]);
			o.c = Integer.parseInt(sa[2]);
			list.get(p).add(o);
			set.add(p);
		}
		br.close();

		int mod = 1000000007;
		// x個、最後がy、複雑度z
		long[][][] dp = new long[n][max][k + 1];
		for (int y : set) {
			dp[0][y][0] = 1;
		}
		for (int x = 0; x < n - 1; x++) {
			for (int y : set) {
				for (Obj next : list.get(y)) {
					for (int z = 0; z <= k; z++) {
						if (z + next.c <= k) {
							dp[x + 1][next.q][z + next.c] += dp[x][y][z];
							dp[x + 1][next.q][z + next.c] %= mod;
						}
					}
				}
			}
//			for (int y = 0; y < 5; y++) {
//				for (int z = 0; z <= k; z++) {
//					System.out.print(dp[x + 1][y][z] + "\t");
//				}
//				System.out.println();
//			}
//			System.out.println();
		}

		long ans = 0;
		for (int y = 0; y < max; y++) {
			ans += dp[n - 1][y][k];
		}
		ans %= mod;
		System.out.println(ans);
	}

	static class Obj {
		int q, c;
	}
}
0