結果

問題 No.479 頂点は要らない
ユーザー tentententen
提出日時 2020-09-11 09:40:33
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 888 bytes
コンパイル時間 3,136 ms
コンパイル使用メモリ 79,936 KB
実行使用メモリ 95,756 KB
最終ジャッジ日時 2024-06-07 05:04:36
合計ジャッジ時間 24,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,428 KB
testcase_01 AC 138 ms
41,280 KB
testcase_02 AC 141 ms
41,020 KB
testcase_03 AC 141 ms
40,908 KB
testcase_04 RE -
testcase_05 AC 134 ms
40,884 KB
testcase_06 AC 136 ms
41,332 KB
testcase_07 AC 138 ms
41,052 KB
testcase_08 AC 137 ms
41,412 KB
testcase_09 AC 136 ms
41,140 KB
testcase_10 AC 136 ms
41,444 KB
testcase_11 AC 137 ms
41,176 KB
testcase_12 RE -
testcase_13 AC 138 ms
41,200 KB
testcase_14 AC 139 ms
41,516 KB
testcase_15 AC 139 ms
41,244 KB
testcase_16 AC 137 ms
41,080 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 216 ms
44,572 KB
testcase_22 AC 215 ms
43,516 KB
testcase_23 AC 212 ms
44,236 KB
testcase_24 AC 217 ms
44,072 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 1,009 ms
83,636 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

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<TreeSet<Integer>> graph = new ArrayList<>();
    	for (int i = 0; i < n; i++) {
    	    graph.add(new TreeSet<>());
    	}
    	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);
    	}
    	StringBuilder sb = new StringBuilder();
    	for (int i = n - 1; i >= 0; i--) {
    	    if (graph.get(i).last() > i) {
    	        sb.append("1");
    	        for (int x : graph.get(i)) {
    	            graph.get(x).remove(i);
    	        }
    	    } else {
    	        if (sb.length() > 0) {
    	            sb.append("0");
    	        }
    	    }
    	}
    	System.out.println(sb);
	}
}
0