結果

問題 No.1340 おーじ君をさがせ
ユーザー ks2mks2m
提出日時 2021-01-15 22:40:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,105 ms / 2,000 ms
コード長 1,709 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 78,544 KB
実行使用メモリ 76,748 KB
最終ジャッジ日時 2024-05-05 02:55:09
合計ジャッジ時間 20,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,952 KB
testcase_01 AC 44 ms
36,716 KB
testcase_02 AC 45 ms
36,664 KB
testcase_03 AC 46 ms
37,016 KB
testcase_04 AC 47 ms
36,696 KB
testcase_05 AC 45 ms
36,924 KB
testcase_06 AC 47 ms
36,784 KB
testcase_07 AC 48 ms
37,072 KB
testcase_08 AC 46 ms
36,704 KB
testcase_09 AC 45 ms
36,724 KB
testcase_10 AC 87 ms
38,456 KB
testcase_11 AC 79 ms
39,156 KB
testcase_12 AC 155 ms
42,956 KB
testcase_13 AC 55 ms
37,316 KB
testcase_14 AC 83 ms
39,036 KB
testcase_15 AC 50 ms
37,356 KB
testcase_16 AC 139 ms
42,076 KB
testcase_17 AC 49 ms
37,468 KB
testcase_18 AC 49 ms
37,464 KB
testcase_19 AC 50 ms
36,892 KB
testcase_20 AC 96 ms
40,288 KB
testcase_21 AC 480 ms
55,500 KB
testcase_22 AC 622 ms
60,920 KB
testcase_23 AC 421 ms
55,160 KB
testcase_24 AC 1,105 ms
76,748 KB
testcase_25 AC 207 ms
44,700 KB
testcase_26 AC 180 ms
43,332 KB
testcase_27 AC 174 ms
42,852 KB
testcase_28 AC 227 ms
44,612 KB
testcase_29 AC 137 ms
41,288 KB
testcase_30 AC 456 ms
55,336 KB
testcase_31 AC 1,059 ms
74,792 KB
testcase_32 AC 133 ms
44,128 KB
testcase_33 AC 153 ms
44,084 KB
testcase_34 AC 376 ms
53,720 KB
testcase_35 AC 402 ms
54,756 KB
testcase_36 AC 47 ms
36,976 KB
testcase_37 AC 130 ms
41,844 KB
testcase_38 AC 137 ms
43,712 KB
testcase_39 AC 945 ms
73,764 KB
testcase_40 AC 934 ms
73,820 KB
testcase_41 AC 967 ms
73,872 KB
testcase_42 AC 44 ms
36,936 KB
testcase_43 AC 44 ms
37,168 KB
testcase_44 AC 44 ms
36,988 KB
testcase_45 AC 46 ms
37,120 KB
testcase_46 AC 794 ms
72,720 KB
testcase_47 AC 758 ms
71,532 KB
testcase_48 AC 711 ms
71,740 KB
testcase_49 AC 787 ms
69,572 KB
testcase_50 AC 900 ms
69,608 KB
testcase_51 AC 800 ms
70,208 KB
testcase_52 AC 90 ms
39,784 KB
testcase_53 AC 82 ms
40,036 KB
testcase_54 AC 83 ms
39,788 KB
testcase_55 AC 390 ms
58,128 KB
testcase_56 AC 50 ms
36,844 KB
testcase_57 AC 50 ms
36,636 KB
testcase_58 AC 47 ms
36,860 KB
testcase_59 AC 91 ms
39,884 KB
testcase_60 AC 45 ms
36,768 KB
testcase_61 AC 88 ms
39,996 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]);
		long t = Long.parseLong(sa[2]);
		List<List<Integer>> list = new ArrayList<>();
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]);
			int b = Integer.parseInt(sa[1]);
			list.get(a).add(b);
		}
		br.close();

		int e = 63;
		List<List<Set<Integer>>> dp = new ArrayList<>(e);
		List<Set<Integer>> wk = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			Set<Integer> set = new HashSet<>();
			set.addAll(list.get(i));
			wk.add(set);
		}
		dp.add(wk);
		for (int i = 1; i < e; i++) {
			wk = new ArrayList<>(n);
			List<Set<Integer>> pre = dp.get(i - 1);
			for (int j = 0; j < n; j++) {
				Set<Integer> set = new HashSet<>();
				Set<Integer> ps = pre.get(j);
				for (int k : ps) {
					set.addAll(pre.get(k));
				}
				wk.add(set);
			}
			dp.add(wk);
		}

		Set<Integer> ans = new HashSet<>();
		ans.add(0);
		for (int i = 0; i < e; i++) {
			if ((t >> i & 1) == 0) {
				continue;
			}
			Set<Integer> set = new HashSet<>();
			List<Set<Integer>> di = dp.get(i);
			for (int j = 0; j < n; j++) {
				for (int k : ans) {
					if (di.get(k).contains(j)) {
						set.add(j);
					}
				}
			}
			ans = set;
		}
		System.out.println(ans.size());
	}
}
0