結果

問題 No.679 不思議マーケット
ユーザー 37zigen37zigen
提出日時 2018-05-04 03:26:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 80,132 KB
実行使用メモリ 48,048 KB
最終ジャッジ日時 2024-06-28 00:56:42
合計ジャッジ時間 6,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,532 KB
testcase_01 AC 136 ms
41,488 KB
testcase_02 AC 120 ms
40,232 KB
testcase_03 AC 292 ms
48,048 KB
testcase_04 AC 230 ms
46,052 KB
testcase_05 AC 240 ms
46,156 KB
testcase_06 AC 206 ms
43,496 KB
testcase_07 AC 195 ms
42,516 KB
testcase_08 AC 226 ms
45,640 KB
testcase_09 AC 134 ms
41,108 KB
testcase_10 AC 204 ms
43,376 KB
testcase_11 AC 203 ms
42,736 KB
testcase_12 AC 209 ms
43,880 KB
testcase_13 AC 220 ms
44,100 KB
testcase_14 AC 209 ms
43,572 KB
testcase_15 AC 189 ms
42,872 KB
testcase_16 AC 139 ms
41,164 KB
testcase_17 AC 137 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main {

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] deg = new int[n];
		ArrayList<Integer>[] g = new ArrayList[n];
		for (int i = 0; i < g.length; ++i)
			g[i] = new ArrayList<>();
		for (int i = 0; i < m; ++i) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			--a;
			for (int j = 0; j < b; ++j) {
				int h = sc.nextInt();
				--h;
				g[h].add(a);
				++deg[a];
			}
		}
		int INF = 99999;
		int ans = 0;
		out:for (int i = 0; i < n; ++i) {
			int mi = INF;
			for (int d : deg)
				mi = Math.min(mi, d);
			for (int j = 0; j < n; ++j) {
				if (deg[j] == mi) {
					if (deg[j] == 0)
						++ans;
					else
						break out;
					deg[j] = INF;
					for (int dst : g[j])
						--deg[dst];
				}
			}
		}
		System.out.println(ans);
	}

	public static void main(String[] args) {
		new Main().run();
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0