結果

問題 No.479 頂点は要らない
ユーザー te-shte-sh
提出日時 2017-12-11 16:09:36
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 82 ms / 1,500 ms
コード長 563 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 102,548 KB
実行使用メモリ 9,368 KB
最終ジャッジ日時 2024-06-12 22:59:37
合計ジャッジ時間 3,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 80 ms
8,980 KB
testcase_27 AC 80 ms
7,776 KB
testcase_28 AC 82 ms
9,368 KB
testcase_29 AC 81 ms
7,776 KB
testcase_30 AC 81 ms
6,940 KB
testcase_31 AC 79 ms
6,944 KB
testcase_32 AC 79 ms
6,944 KB
testcase_33 AC 72 ms
6,940 KB
testcase_34 AC 77 ms
6,940 KB
testcase_35 AC 72 ms
6,948 KB
testcase_36 AC 44 ms
6,940 KB
testcase_37 AC 78 ms
6,944 KB
testcase_38 AC 67 ms
6,944 KB
testcase_39 AC 49 ms
6,940 KB
testcase_40 AC 57 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto rd = readln.split.to!(int[]), n = rd[0], m = rd[1];
  auto g = new int[][](n);
  foreach (i; 0..m) {
    auto rd2 = readln.splitter;
    auto a = rd2.front.to!int; rd2.popFront();
    auto b = rd2.front.to!int;
    g[a] ~= b;
    g[b] ~= a;
  }

  auto b = new bool[](n);
  foreach_reverse (i; 0..n)
    if (!b[i])
      foreach (e; g[i])
        if (e < i)
          b[e] = true;

  b.reverse();

  foreach (bi; b[b.countUntil(true)..$])
    write(bi ? 1 : 0);
  writeln;
}
0