結果

問題 No.479 頂点は要らない
ユーザー tentententen
提出日時 2021-11-11 18:50:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 945 ms / 1,500 ms
コード長 2,080 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 78,628 KB
実行使用メモリ 88,552 KB
最終ジャッジ日時 2024-05-02 14:52:09
合計ジャッジ時間 15,855 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,296 KB
testcase_01 AC 53 ms
36,860 KB
testcase_02 AC 54 ms
36,876 KB
testcase_03 AC 54 ms
36,748 KB
testcase_04 AC 54 ms
36,784 KB
testcase_05 AC 53 ms
36,800 KB
testcase_06 AC 53 ms
36,532 KB
testcase_07 AC 53 ms
36,828 KB
testcase_08 AC 53 ms
36,340 KB
testcase_09 AC 53 ms
36,340 KB
testcase_10 AC 54 ms
36,996 KB
testcase_11 AC 55 ms
36,732 KB
testcase_12 AC 53 ms
36,760 KB
testcase_13 AC 53 ms
36,764 KB
testcase_14 AC 54 ms
36,752 KB
testcase_15 AC 53 ms
36,892 KB
testcase_16 AC 54 ms
36,884 KB
testcase_17 AC 53 ms
36,756 KB
testcase_18 AC 55 ms
36,804 KB
testcase_19 AC 93 ms
38,208 KB
testcase_20 AC 95 ms
38,380 KB
testcase_21 AC 93 ms
38,160 KB
testcase_22 AC 91 ms
38,252 KB
testcase_23 AC 89 ms
38,332 KB
testcase_24 AC 100 ms
38,376 KB
testcase_25 AC 86 ms
38,296 KB
testcase_26 AC 941 ms
83,236 KB
testcase_27 AC 945 ms
83,520 KB
testcase_28 AC 710 ms
88,552 KB
testcase_29 AC 477 ms
65,040 KB
testcase_30 AC 476 ms
65,032 KB
testcase_31 AC 461 ms
65,088 KB
testcase_32 AC 466 ms
67,144 KB
testcase_33 AC 671 ms
66,928 KB
testcase_34 AC 725 ms
67,492 KB
testcase_35 AC 682 ms
62,444 KB
testcase_36 AC 442 ms
51,768 KB
testcase_37 AC 745 ms
69,612 KB
testcase_38 AC 640 ms
65,176 KB
testcase_39 AC 519 ms
61,436 KB
testcase_40 AC 580 ms
65,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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[] delete = new boolean[n];
        for (int i = n - 1; i >= 0; i--) {
            if (delete[i]) {
                for (int x : graph.get(i)) {
                    graph.get(x).remove(i);
                }
            } else {
                for (int x : graph.get(i)) {
                    delete[x] = true;
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        boolean isFirst = true;
        for (int i = n - 1; i >= 0; i--) {
            if (delete[i]) {
                sb.append("1");
                isFirst = false;
            } else {
                if (!isFirst) {
                    sb.append("0");
                }
            }
        }
        System.out.println(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0