結果

問題 No.1340 おーじ君をさがせ
ユーザー ks2mks2m
提出日時 2021-01-15 22:33:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,121 ms / 2,000 ms
コード長 1,679 bytes
コンパイル時間 4,589 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 77,848 KB
最終ジャッジ日時 2024-11-27 23:13:25
合計ジャッジ時間 20,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,908 KB
testcase_01 AC 45 ms
36,952 KB
testcase_02 AC 44 ms
36,700 KB
testcase_03 AC 45 ms
36,860 KB
testcase_04 AC 50 ms
37,148 KB
testcase_05 AC 45 ms
36,784 KB
testcase_06 AC 46 ms
36,740 KB
testcase_07 AC 47 ms
37,152 KB
testcase_08 AC 45 ms
37,036 KB
testcase_09 AC 45 ms
36,732 KB
testcase_10 AC 83 ms
38,652 KB
testcase_11 AC 85 ms
39,260 KB
testcase_12 AC 139 ms
43,164 KB
testcase_13 AC 52 ms
37,316 KB
testcase_14 AC 80 ms
38,996 KB
testcase_15 AC 52 ms
37,544 KB
testcase_16 AC 131 ms
42,116 KB
testcase_17 AC 51 ms
37,304 KB
testcase_18 AC 51 ms
37,032 KB
testcase_19 AC 50 ms
36,916 KB
testcase_20 AC 93 ms
39,748 KB
testcase_21 AC 416 ms
55,320 KB
testcase_22 AC 583 ms
60,532 KB
testcase_23 AC 405 ms
55,060 KB
testcase_24 AC 986 ms
77,848 KB
testcase_25 AC 207 ms
44,420 KB
testcase_26 AC 186 ms
43,780 KB
testcase_27 AC 158 ms
42,644 KB
testcase_28 AC 226 ms
44,556 KB
testcase_29 AC 137 ms
41,168 KB
testcase_30 AC 425 ms
55,212 KB
testcase_31 AC 1,121 ms
74,544 KB
testcase_32 AC 140 ms
43,644 KB
testcase_33 AC 146 ms
43,820 KB
testcase_34 AC 371 ms
53,924 KB
testcase_35 AC 379 ms
53,924 KB
testcase_36 AC 45 ms
36,688 KB
testcase_37 AC 127 ms
41,780 KB
testcase_38 AC 136 ms
43,624 KB
testcase_39 AC 958 ms
73,808 KB
testcase_40 AC 977 ms
73,232 KB
testcase_41 AC 880 ms
71,212 KB
testcase_42 AC 50 ms
36,876 KB
testcase_43 AC 49 ms
37,100 KB
testcase_44 AC 46 ms
36,864 KB
testcase_45 AC 44 ms
37,004 KB
testcase_46 AC 713 ms
71,428 KB
testcase_47 AC 682 ms
71,892 KB
testcase_48 AC 715 ms
71,452 KB
testcase_49 AC 938 ms
72,180 KB
testcase_50 AC 801 ms
69,712 KB
testcase_51 AC 805 ms
69,764 KB
testcase_52 AC 79 ms
39,840 KB
testcase_53 AC 83 ms
39,668 KB
testcase_54 AC 84 ms
39,664 KB
testcase_55 AC 390 ms
58,012 KB
testcase_56 AC 50 ms
36,624 KB
testcase_57 AC 48 ms
37,160 KB
testcase_58 AC 47 ms
36,952 KB
testcase_59 AC 87 ms
40,152 KB
testcase_60 AC 44 ms
36,900 KB
testcase_61 AC 86 ms
40,304 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 k : ans) {
				set.addAll(di.get(k));
			}
			ans = set;
			if (ans.size() == n) {
				break;
			}
		}
		System.out.println(ans.size());
	}
}
0