結果

問題 No.812 Change of Class
ユーザー te-shte-sh
提出日時 2020-01-12 14:58:15
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 337 ms / 4,000 ms
コード長 2,640 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 151,320 KB
実行使用メモリ 16,804 KB
最終ジャッジ日時 2024-06-22 04:06:03
合計ジャッジ時間 12,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
13,088 KB
testcase_01 AC 33 ms
6,812 KB
testcase_02 AC 114 ms
13,564 KB
testcase_03 AC 256 ms
13,576 KB
testcase_04 AC 222 ms
14,320 KB
testcase_05 AC 337 ms
14,272 KB
testcase_06 AC 286 ms
13,504 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 313 ms
14,560 KB
testcase_10 AC 319 ms
14,684 KB
testcase_11 AC 24 ms
6,940 KB
testcase_12 AC 200 ms
16,804 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 210 ms
13,612 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 191 ms
14,256 KB
testcase_18 AC 147 ms
14,692 KB
testcase_19 AC 170 ms
13,828 KB
testcase_20 AC 332 ms
14,088 KB
testcase_21 AC 142 ms
13,172 KB
testcase_22 AC 66 ms
12,476 KB
testcase_23 AC 11 ms
6,940 KB
testcase_24 AC 17 ms
6,944 KB
testcase_25 AC 54 ms
12,456 KB
testcase_26 AC 264 ms
14,324 KB
testcase_27 AC 242 ms
13,420 KB
testcase_28 AC 161 ms
13,448 KB
testcase_29 AC 42 ms
12,372 KB
testcase_30 AC 215 ms
13,604 KB
testcase_31 AC 176 ms
13,400 KB
testcase_32 AC 83 ms
13,444 KB
testcase_33 AC 220 ms
14,020 KB
testcase_34 AC 17 ms
6,940 KB
testcase_35 AC 50 ms
12,912 KB
testcase_36 AC 21 ms
6,944 KB
testcase_37 AC 119 ms
12,712 KB
testcase_38 AC 9 ms
6,940 KB
testcase_39 AC 122 ms
13,436 KB
testcase_40 AC 29 ms
6,944 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 251 ms
13,932 KB
testcase_43 AC 44 ms
8,688 KB
testcase_44 AC 170 ms
13,004 KB
testcase_45 AC 20 ms
6,940 KB
testcase_46 AC 40 ms
8,044 KB
testcase_47 AC 174 ms
13,012 KB
testcase_48 AC 179 ms
14,192 KB
testcase_49 AC 54 ms
13,748 KB
testcase_50 AC 4 ms
6,940 KB
testcase_51 AC 49 ms
14,672 KB
testcase_52 AC 90 ms
14,628 KB
testcase_53 AC 34 ms
6,944 KB
testcase_54 AC 30 ms
6,944 KB
testcase_55 AC 177 ms
13,528 KB
testcase_56 AC 220 ms
13,092 KB
testcase_57 AC 237 ms
13,620 KB
testcase_58 AC 112 ms
13,312 KB
testcase_59 AC 265 ms
13,836 KB
testcase_60 AC 1 ms
6,944 KB
testcase_61 AC 1 ms
6,940 KB
testcase_62 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// URL: https://yukicoder.me/problems/no/812

import std.algorithm, std.container, std.math, std.range, std.typecons, std.string;

version(unittest) {} else
void main()
{
  int n, m; io.getV(n, m);

  auto g = Graph(n);
  foreach (_; 0..m) {
    int p, q; io.getV(p, q); --p; --q;
    g.addEdgeB(p, q);
  }

  int q; io.getV(q);
  foreach (_; 0..q) {
    int a; io.getV(a); --a;

    auto qu = DList!(g.Node)(a);
    auto md = 0, d = new int[](n), c = 0;
    d[] = -1; d[a] = 0;
    while (!qu.empty) {
      auto u = qu.front; qu.removeFront();
      ++c;

      foreach (v; g[u]) {
        if (d[v] == -1) {
          d[v] = d[u] + 1;
          md = max(md, d[v]);
          qu.insertBack(v);
        }
      }
    }
    auto x = 0;
    while (md > 1) {
      ++x;
      md = (md+1) / 2;
    }
    io.put(c-1, x);
  }
}

struct Graph
{
  alias Node = int;
  Node n;
  Node[][] g;
  alias g this;
  this(Node n) { this.n = n; g = new Node[][](n); }
  void addEdge(Node u, Node v) { g[u] ~= v; }
  void addEdgeB(Node u, Node v) { g[u] ~= v; g[v] ~= u; }
}

auto io = IO();

struct IO
{
  import std.algorithm, std.conv, std.format, std.meta, std.range, std.stdio, std.traits;

  dchar[] buf;
  auto sp = (new dchar[](0)).splitter;
  int precision = 10;
  string delimiter = " ";

  void nextLine()
  {
    stdin.readln(buf);
    sp = buf.splitter;
  }

  auto get(T)(ref T v)
  {
    if (sp.empty) nextLine();
    v = sp.front.to!T;
    sp.popFront();
  }

  auto getV(T...)(ref T v)
  {
    foreach (ref w; v) get(w);
  }

  auto getA(T)(size_t n, ref T v)
  if (hasAssignableElements!T)
  {
    v = new T(n);
    foreach (ref w; v) get(w);
  }

  auto getC(T...)(size_t n, ref T v)
  if (allSatisfy!(hasAssignableElements, T))
  {
    foreach (ref w; v)
      w = new typeof(w)(n);
    foreach (i; 0..n)
      foreach (ref w; v) get(w[i]);
  }

  auto getM(T)(size_t r, size_t c, ref T v)
  if (hasAssignableElements!T && hasAssignableElements!(ElementType!T))
  {
    v = new T(r);
    foreach (ref w; v) getA(c, w);
  }

  auto rangePop(R)(ref R r)
  {
    r.popFront();
    if (!r.empty) write(delimiter);
  }

  auto putA(T)(T v)
  {
    static if (isInputRange!T && !isSomeString!T)
      for (auto w = v; !w.empty; rangePop(w)) putA(w.front);
    else if (isFloatingPoint!T)
      writef(format("%%.%df", precision), v);
    else
      write(v);
  }

  auto put(T...)(T v)
  {
    foreach (i, w; v) {
      putA(w);
      if (i < v.length-1) write(delimiter);
    }
    writeln;
  }

  auto putB(S, T)(bool c, S t, T f)
  {
    if (c)
      put(t);
    else
      put(f);
  }

  auto dbg(T...)(T v)
  {
    stderr.writeln(v);
  }
}
0