結果

問題 No.1340 おーじ君をさがせ
ユーザー ks2mks2m
提出日時 2021-01-15 22:10:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,638 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 78,560 KB
実行使用メモリ 84,592 KB
最終ジャッジ日時 2024-05-05 02:45:30
合計ジャッジ時間 14,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,324 KB
testcase_01 AC 47 ms
50,212 KB
testcase_02 AC 48 ms
50,164 KB
testcase_03 AC 48 ms
50,072 KB
testcase_04 WA -
testcase_05 AC 47 ms
50,200 KB
testcase_06 AC 49 ms
50,032 KB
testcase_07 AC 48 ms
50,084 KB
testcase_08 AC 46 ms
49,824 KB
testcase_09 AC 46 ms
49,820 KB
testcase_10 RE -
testcase_11 AC 82 ms
51,152 KB
testcase_12 AC 141 ms
55,020 KB
testcase_13 AC 51 ms
37,532 KB
testcase_14 AC 79 ms
39,384 KB
testcase_15 AC 54 ms
37,864 KB
testcase_16 AC 136 ms
42,516 KB
testcase_17 AC 51 ms
37,188 KB
testcase_18 AC 51 ms
37,328 KB
testcase_19 AC 50 ms
37,392 KB
testcase_20 AC 93 ms
39,556 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 48 ms
49,732 KB
testcase_45 AC 52 ms
50,144 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 686 ms
81,136 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 768 ms
81,404 KB
testcase_52 AC 87 ms
51,396 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 370 ms
67,584 KB
testcase_56 RE -
testcase_57 AC 52 ms
37,100 KB
testcase_58 AC 47 ms
37,120 KB
testcase_59 WA -
testcase_60 AC 46 ms
36,788 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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 t = Integer.parseInt(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;
		}
		System.out.println(ans.size());
	}
}
0