結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,060 KB
testcase_01 AC 53 ms
37,148 KB
testcase_02 AC 59 ms
37,196 KB
testcase_03 AC 53 ms
37,160 KB
testcase_04 AC 52 ms
36,768 KB
testcase_05 AC 53 ms
37,200 KB
testcase_06 AC 52 ms
36,940 KB
testcase_07 AC 56 ms
37,244 KB
testcase_08 AC 53 ms
37,048 KB
testcase_09 AC 52 ms
36,924 KB
testcase_10 AC 54 ms
36,892 KB
testcase_11 AC 53 ms
36,916 KB
testcase_12 AC 52 ms
36,888 KB
testcase_13 AC 53 ms
37,352 KB
testcase_14 AC 53 ms
37,108 KB
testcase_15 AC 52 ms
36,812 KB
testcase_16 AC 52 ms
36,940 KB
testcase_17 AC 54 ms
37,060 KB
testcase_18 AC 52 ms
37,144 KB
testcase_19 AC 90 ms
38,556 KB
testcase_20 AC 92 ms
38,632 KB
testcase_21 AC 87 ms
38,076 KB
testcase_22 AC 95 ms
38,500 KB
testcase_23 AC 100 ms
38,756 KB
testcase_24 AC 90 ms
38,448 KB
testcase_25 AC 94 ms
38,740 KB
testcase_26 AC 881 ms
83,868 KB
testcase_27 AC 873 ms
83,504 KB
testcase_28 AC 706 ms
93,080 KB
testcase_29 AC 449 ms
67,464 KB
testcase_30 AC 456 ms
68,020 KB
testcase_31 AC 452 ms
68,372 KB
testcase_32 AC 454 ms
68,064 KB
testcase_33 AC 622 ms
67,288 KB
testcase_34 AC 693 ms
68,484 KB
testcase_35 AC 635 ms
63,496 KB
testcase_36 AC 415 ms
51,984 KB
testcase_37 AC 674 ms
69,824 KB
testcase_38 AC 595 ms
65,376 KB
testcase_39 AC 478 ms
60,000 KB
testcase_40 AC 544 ms
66,844 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