結果

問題 No.479 頂点は要らない
ユーザー tentententen
提出日時 2020-09-11 09:47:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,398 ms / 1,500 ms
コード長 915 bytes
コンパイル時間 3,354 ms
コンパイル使用メモリ 80,584 KB
実行使用メモリ 83,908 KB
最終ジャッジ日時 2024-06-07 08:13:25
合計ジャッジ時間 26,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,380 KB
testcase_01 AC 134 ms
41,172 KB
testcase_02 AC 136 ms
41,008 KB
testcase_03 AC 132 ms
40,932 KB
testcase_04 AC 133 ms
41,020 KB
testcase_05 AC 140 ms
41,220 KB
testcase_06 AC 139 ms
41,424 KB
testcase_07 AC 139 ms
41,172 KB
testcase_08 AC 130 ms
41,072 KB
testcase_09 AC 132 ms
41,056 KB
testcase_10 AC 129 ms
41,148 KB
testcase_11 AC 128 ms
41,060 KB
testcase_12 AC 132 ms
40,944 KB
testcase_13 AC 130 ms
41,160 KB
testcase_14 AC 132 ms
41,068 KB
testcase_15 AC 136 ms
41,276 KB
testcase_16 AC 131 ms
41,160 KB
testcase_17 AC 115 ms
39,648 KB
testcase_18 AC 132 ms
41,068 KB
testcase_19 AC 215 ms
43,660 KB
testcase_20 AC 218 ms
44,380 KB
testcase_21 AC 212 ms
44,040 KB
testcase_22 AC 210 ms
43,968 KB
testcase_23 AC 220 ms
43,368 KB
testcase_24 AC 216 ms
43,520 KB
testcase_25 AC 211 ms
43,032 KB
testcase_26 AC 1,351 ms
83,908 KB
testcase_27 AC 1,320 ms
83,832 KB
testcase_28 AC 1,027 ms
83,556 KB
testcase_29 AC 924 ms
73,908 KB
testcase_30 AC 920 ms
75,080 KB
testcase_31 AC 933 ms
74,868 KB
testcase_32 AC 978 ms
74,184 KB
testcase_33 AC 1,285 ms
73,764 KB
testcase_34 AC 1,398 ms
75,012 KB
testcase_35 AC 1,387 ms
73,096 KB
testcase_36 AC 1,085 ms
63,948 KB
testcase_37 AC 1,326 ms
74,740 KB
testcase_38 AC 1,230 ms
71,752 KB
testcase_39 AC 991 ms
62,732 KB
testcase_40 AC 1,028 ms
68,388 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<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).size() > 0 && 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