結果

問題 No.479 頂点は要らない
ユーザー htensaihtensai
提出日時 2020-05-08 19:59:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,333 ms / 1,500 ms
コード長 1,300 bytes
コンパイル時間 3,561 ms
コンパイル使用メモリ 79,988 KB
実行使用メモリ 101,368 KB
最終ジャッジ日時 2024-07-03 09:57:56
合計ジャッジ時間 25,635 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,028 KB
testcase_01 AC 130 ms
53,964 KB
testcase_02 AC 134 ms
54,228 KB
testcase_03 AC 131 ms
54,036 KB
testcase_04 AC 131 ms
53,916 KB
testcase_05 AC 134 ms
54,196 KB
testcase_06 AC 128 ms
54,304 KB
testcase_07 AC 129 ms
53,616 KB
testcase_08 AC 133 ms
54,084 KB
testcase_09 AC 132 ms
54,068 KB
testcase_10 AC 131 ms
54,124 KB
testcase_11 AC 131 ms
54,104 KB
testcase_12 AC 133 ms
54,320 KB
testcase_13 AC 135 ms
54,120 KB
testcase_14 AC 136 ms
54,160 KB
testcase_15 AC 136 ms
54,216 KB
testcase_16 AC 133 ms
54,128 KB
testcase_17 AC 133 ms
53,808 KB
testcase_18 AC 136 ms
54,096 KB
testcase_19 AC 216 ms
56,684 KB
testcase_20 AC 210 ms
56,620 KB
testcase_21 AC 203 ms
57,168 KB
testcase_22 AC 211 ms
56,664 KB
testcase_23 AC 215 ms
56,580 KB
testcase_24 AC 212 ms
56,592 KB
testcase_25 AC 210 ms
56,612 KB
testcase_26 AC 1,324 ms
100,632 KB
testcase_27 AC 1,318 ms
100,612 KB
testcase_28 AC 1,001 ms
101,368 KB
testcase_29 AC 927 ms
91,336 KB
testcase_30 AC 919 ms
88,752 KB
testcase_31 AC 970 ms
91,696 KB
testcase_32 AC 960 ms
91,508 KB
testcase_33 AC 1,255 ms
87,196 KB
testcase_34 AC 1,333 ms
91,064 KB
testcase_35 AC 1,213 ms
85,216 KB
testcase_36 AC 911 ms
70,596 KB
testcase_37 AC 1,282 ms
93,464 KB
testcase_38 AC 1,117 ms
85,504 KB
testcase_39 AC 950 ms
77,264 KB
testcase_40 AC 1,005 ms
82,612 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