結果

問題 No.479 頂点は要らない
ユーザー 37zigen37zigen
提出日時 2017-01-28 01:13:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,315 ms / 1,500 ms
コード長 1,010 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 81,184 KB
実行使用メモリ 87,064 KB
最終ジャッジ日時 2024-12-23 18:43:38
合計ジャッジ時間 22,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,048 KB
testcase_01 AC 107 ms
41,028 KB
testcase_02 AC 128 ms
41,176 KB
testcase_03 AC 118 ms
41,024 KB
testcase_04 AC 118 ms
40,816 KB
testcase_05 AC 121 ms
41,220 KB
testcase_06 AC 124 ms
41,336 KB
testcase_07 AC 119 ms
41,180 KB
testcase_08 AC 118 ms
41,360 KB
testcase_09 AC 121 ms
41,180 KB
testcase_10 AC 108 ms
41,300 KB
testcase_11 AC 116 ms
41,340 KB
testcase_12 AC 116 ms
41,140 KB
testcase_13 AC 110 ms
41,452 KB
testcase_14 AC 111 ms
41,288 KB
testcase_15 AC 121 ms
41,332 KB
testcase_16 AC 118 ms
40,088 KB
testcase_17 AC 129 ms
40,968 KB
testcase_18 AC 114 ms
41,244 KB
testcase_19 AC 206 ms
44,104 KB
testcase_20 AC 226 ms
44,352 KB
testcase_21 AC 180 ms
43,204 KB
testcase_22 AC 241 ms
44,280 KB
testcase_23 AC 201 ms
43,704 KB
testcase_24 AC 204 ms
43,660 KB
testcase_25 AC 228 ms
44,116 KB
testcase_26 AC 1,278 ms
87,064 KB
testcase_27 AC 1,315 ms
86,620 KB
testcase_28 AC 1,148 ms
76,128 KB
testcase_29 AC 968 ms
65,604 KB
testcase_30 AC 947 ms
66,276 KB
testcase_31 AC 915 ms
65,544 KB
testcase_32 AC 917 ms
65,976 KB
testcase_33 AC 1,062 ms
66,304 KB
testcase_34 AC 1,161 ms
65,652 KB
testcase_35 AC 947 ms
64,280 KB
testcase_36 AC 676 ms
56,428 KB
testcase_37 AC 1,053 ms
68,764 KB
testcase_38 AC 983 ms
65,300 KB
testcase_39 AC 908 ms
63,820 KB
testcase_40 AC 1,009 ms
65,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.concurrent.SynchronousQueue;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		ArrayList<Integer>[] g = new ArrayList[n];
		for (int i = 0; i < n; ++i)
			g[i] = new ArrayList<>();
		int[] a = new int[m];
		int[] b = new int[m];
		boolean[] used = new boolean[n];
		for (int i = 0; i < m; ++i) {
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
			g[a[i]].add(b[i]);
			g[b[i]].add(a[i]);
		}
		for (int i = n - 1; i >= 0; --i) {
			boolean f = true;
			for (int dst : g[i]) {
				if (dst > i && !used[dst]) {
					f = false;
					break;
				}
			}
			if (!f) {
				used[i] = true;
			}
		}
		boolean f = false;
		for (int i = n - 1; i >= 0; --i) {
			if (!f && !used[i])
				continue;
			else
				f = true;
			System.out.print(used[i] ? 1 : 0);
		}
		System.out.println();
	}

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