結果

問題 No.479 頂点は要らない
ユーザー htensaihtensai
提出日時 2020-05-08 19:59:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,351 ms / 1,500 ms
コード長 1,300 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 79,272 KB
実行使用メモリ 101,696 KB
最終ジャッジ日時 2024-12-16 18:24:29
合計ジャッジ時間 25,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,256 KB
testcase_01 AC 137 ms
41,748 KB
testcase_02 AC 142 ms
41,304 KB
testcase_03 AC 135 ms
41,528 KB
testcase_04 AC 135 ms
41,376 KB
testcase_05 AC 137 ms
41,392 KB
testcase_06 AC 136 ms
41,440 KB
testcase_07 AC 138 ms
41,236 KB
testcase_08 AC 137 ms
40,332 KB
testcase_09 AC 140 ms
41,488 KB
testcase_10 AC 138 ms
41,372 KB
testcase_11 AC 137 ms
41,284 KB
testcase_12 AC 137 ms
41,872 KB
testcase_13 AC 140 ms
41,380 KB
testcase_14 AC 142 ms
41,744 KB
testcase_15 AC 146 ms
41,284 KB
testcase_16 AC 138 ms
41,772 KB
testcase_17 AC 139 ms
41,380 KB
testcase_18 AC 138 ms
41,684 KB
testcase_19 AC 225 ms
43,632 KB
testcase_20 AC 221 ms
43,700 KB
testcase_21 AC 212 ms
43,984 KB
testcase_22 AC 218 ms
43,700 KB
testcase_23 AC 219 ms
43,888 KB
testcase_24 AC 220 ms
43,796 KB
testcase_25 AC 218 ms
43,344 KB
testcase_26 AC 1,339 ms
100,940 KB
testcase_27 AC 1,350 ms
101,696 KB
testcase_28 AC 999 ms
90,944 KB
testcase_29 AC 952 ms
80,236 KB
testcase_30 AC 962 ms
80,480 KB
testcase_31 AC 956 ms
81,504 KB
testcase_32 AC 961 ms
80,608 KB
testcase_33 AC 1,252 ms
77,076 KB
testcase_34 AC 1,351 ms
91,500 KB
testcase_35 AC 1,312 ms
73,536 KB
testcase_36 AC 978 ms
61,148 KB
testcase_37 AC 1,336 ms
94,212 KB
testcase_38 AC 1,171 ms
75,416 KB
testcase_39 AC 995 ms
67,460 KB
testcase_40 AC 1,065 ms
75,032 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>> graph = new ArrayList<>();
		for (int i = 0; i < n; i++) {
		    graph.add(new HashSet<>());
		}
		for (int i = 0; i < m; i++) {
		    int a = sc.nextInt();
		    int b = sc.nextInt();
		    graph.get(a).add(b);
		    graph.get(b).add(a);
		}
		boolean[] needs = new boolean[n];
		for (int i = n - 1; i >= 0; i--) {
		    if (needs[i]) {
		        continue;
		    } else {
		        if (graph.get(i).size() == 0) {
		            continue;
		        }
		        for (int x : graph.get(i)) {
		            needs[x] = true;
		            for (int y : graph.get(x)) {
		                if(i == y) {
		                    continue;
		                }
		                graph.get(y).remove(x);
		            }
		            graph.get(x).clear();
		        }
		        graph.get(i).clear();
		    }
		}
		StringBuilder sb = new StringBuilder();
		boolean isFirst = true;
	    for (int i = n - 1; i >= 0; i--) {
	        if (needs[i]) {
	            sb.append("1");
	            isFirst = false;
	        } else if (!isFirst) {
	            sb.append("0");
	        }
	    }
		System.out.println(sb);
	}
}
0