結果

問題 No.679 不思議マーケット
ユーザー tentententen
提出日時 2020-12-22 10:42:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 79,616 KB
実行使用メモリ 48,656 KB
最終ジャッジ日時 2024-09-21 14:01:12
合計ジャッジ時間 7,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,312 KB
testcase_01 AC 134 ms
41,256 KB
testcase_02 AC 135 ms
41,380 KB
testcase_03 AC 324 ms
48,656 KB
testcase_04 AC 246 ms
46,296 KB
testcase_05 AC 252 ms
46,392 KB
testcase_06 AC 213 ms
44,000 KB
testcase_07 AC 203 ms
42,892 KB
testcase_08 AC 237 ms
45,984 KB
testcase_09 AC 119 ms
40,164 KB
testcase_10 AC 208 ms
43,412 KB
testcase_11 AC 205 ms
43,076 KB
testcase_12 AC 217 ms
44,548 KB
testcase_13 AC 224 ms
44,736 KB
testcase_14 AC 216 ms
44,140 KB
testcase_15 AC 201 ms
43,132 KB
testcase_16 AC 139 ms
41,548 KB
testcase_17 AC 134 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        ArrayList<HashSet<Integer>> outputs = new ArrayList<>();
        ArrayList<HashSet<Integer>> inputs = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            outputs.add(new HashSet<>());
            inputs.add(new HashSet<>());
        }
        for (int i = 0; i < m; i++) {
            int to = sc.nextInt() - 1;
            int count = sc.nextInt();
            for (int j = 0; j < count; j++) {
                int x = sc.nextInt() - 1;
                inputs.get(to).add(x);
                outputs.get(x).add(to);
            }
        }
        int ans = 0;
        ArrayDeque<Integer> deq = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            if (inputs.get(i).size() == 0) {
                deq.add(i);
                ans++;
            }
        }
        while (deq.size() > 0) {
            int x = deq.poll();
            for (int y : outputs.get(x)) {
                inputs.get(y).remove(x);
                if (inputs.get(y).size() == 0) {
                    deq.add(y);
                    ans++;
                }
            }
        }
        System.out.println(ans);
    }
}
0