結果

問題 No.1340 おーじ君をさがせ
ユーザー ks2mks2m
提出日時 2021-01-15 22:43:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,156 ms / 2,000 ms
コード長 1,731 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 78,888 KB
実行使用メモリ 77,876 KB
最終ジャッジ日時 2024-11-26 21:20:23
合計ジャッジ時間 22,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,156 KB
testcase_01 AC 48 ms
36,916 KB
testcase_02 AC 46 ms
36,904 KB
testcase_03 AC 49 ms
37,200 KB
testcase_04 AC 50 ms
36,992 KB
testcase_05 AC 48 ms
37,064 KB
testcase_06 AC 49 ms
36,864 KB
testcase_07 AC 49 ms
36,596 KB
testcase_08 AC 48 ms
37,000 KB
testcase_09 AC 48 ms
36,920 KB
testcase_10 AC 85 ms
38,884 KB
testcase_11 AC 85 ms
39,464 KB
testcase_12 AC 154 ms
42,784 KB
testcase_13 AC 54 ms
37,236 KB
testcase_14 AC 86 ms
39,160 KB
testcase_15 AC 54 ms
37,316 KB
testcase_16 AC 140 ms
42,188 KB
testcase_17 AC 53 ms
37,388 KB
testcase_18 AC 52 ms
37,432 KB
testcase_19 AC 51 ms
37,244 KB
testcase_20 AC 97 ms
39,872 KB
testcase_21 AC 434 ms
55,372 KB
testcase_22 AC 625 ms
60,908 KB
testcase_23 AC 426 ms
55,116 KB
testcase_24 AC 1,114 ms
77,876 KB
testcase_25 AC 212 ms
44,336 KB
testcase_26 AC 194 ms
44,140 KB
testcase_27 AC 178 ms
42,988 KB
testcase_28 AC 240 ms
44,744 KB
testcase_29 AC 133 ms
41,272 KB
testcase_30 AC 449 ms
55,192 KB
testcase_31 AC 1,156 ms
74,844 KB
testcase_32 AC 152 ms
43,908 KB
testcase_33 AC 150 ms
43,932 KB
testcase_34 AC 388 ms
53,756 KB
testcase_35 AC 399 ms
54,876 KB
testcase_36 AC 46 ms
36,908 KB
testcase_37 AC 132 ms
42,192 KB
testcase_38 AC 144 ms
43,524 KB
testcase_39 AC 992 ms
73,784 KB
testcase_40 AC 1,024 ms
73,928 KB
testcase_41 AC 974 ms
73,756 KB
testcase_42 AC 49 ms
36,724 KB
testcase_43 AC 48 ms
37,012 KB
testcase_44 AC 49 ms
36,980 KB
testcase_45 AC 46 ms
36,864 KB
testcase_46 AC 743 ms
71,496 KB
testcase_47 AC 751 ms
71,580 KB
testcase_48 AC 759 ms
71,588 KB
testcase_49 AC 924 ms
69,848 KB
testcase_50 AC 974 ms
71,876 KB
testcase_51 AC 928 ms
70,100 KB
testcase_52 AC 84 ms
39,876 KB
testcase_53 AC 93 ms
39,936 KB
testcase_54 AC 93 ms
40,044 KB
testcase_55 AC 398 ms
58,356 KB
testcase_56 AC 50 ms
36,896 KB
testcase_57 AC 51 ms
37,144 KB
testcase_58 AC 48 ms
36,916 KB
testcase_59 AC 85 ms
39,940 KB
testcase_60 AC 46 ms
36,836 KB
testcase_61 AC 96 ms
39,904 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);
		}

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