結果

問題 No.1295 木と駒
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-11-21 00:16:29
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 5,318 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 117,312 KB
実行使用メモリ 50,008 KB
最終ジャッジ日時 2023-09-04 11:08:57
合計ジャッジ時間 13,528 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 AC 291 ms
15,672 KB
testcase_16 AC 289 ms
15,700 KB
testcase_17 AC 293 ms
15,708 KB
testcase_18 WA -
testcase_19 AC 288 ms
19,180 KB
testcase_20 AC 315 ms
47,204 KB
testcase_21 AC 302 ms
26,492 KB
testcase_22 AC 293 ms
19,436 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 297 ms
16,984 KB
testcase_35 WA -
testcase_36 AC 289 ms
15,308 KB
testcase_37 AC 286 ms
15,736 KB
testcase_38 AC 286 ms
17,068 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 285 ms
19,144 KB
testcase_42 AC 291 ms
20,852 KB
testcase_43 AC 284 ms
18,092 KB
testcase_44 AC 287 ms
19,216 KB
testcase_45 WA -
testcase_46 AC 297 ms
18,944 KB
testcase_47 WA -
testcase_48 AC 287 ms
19,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


int N;
int[] A, B;

int[][] G;
int home(int u) {
  if (G[u].empty) {
    return -1;
  }
  const i = G[u][0];
  return A[i] ^ B[i] ^ u;
}

int[] par;
// 0: come back, 1: go
alias Result = int[2];
Result[] dp, DP;

void dfs(int u, int p) {
  par[u] = p;
  foreach (i; G[u]) {
    const v = A[i] ^ B[i] ^ u;
    if (v != p) {
      dfs(v, u);
    }
  }
  // init
  Result[] rs;
  foreach (i; G[u]) {
    const v = A[i] ^ B[i] ^ u;
    if (v != p) {
      // add dp[v]
      rs ~= dp[v];
    }
  }
  // calc dp[u]
  const len = cast(int)(rs.length);
  dp[u][0] = (p != -1 && p == home(u)) ? 1 : 0;
  foreach (j; 0 .. len) {
    dp[u][0] &= rs[j][0];
  }
  dp[u][1] = 1;
  if (len >= 1) {
    int okL = 1, okR = 1;
    okL &= rs[0][0];
    foreach (j; 1 .. len) {
      okL &= rs[j][0];
    }
    foreach (j; 0 .. len - 1) {
      okR &= rs[j][0];
    }
    okR &= rs[len - 1][1];
    dp[u][1] &= okL | okR;
  }
}

void DFS(int u, int p) {
  // init
  alias Entry = Tuple!(Result, "r", int, "v");
  Entry[] es;
  foreach (i; G[u]) {
    const v = A[i] ^ B[i] ^ u;
    /*
    if (v != p) {
      // add dp[v]
    }
    */
    if (v != p) {
      es ~= Entry(dp[v], v);
    } else {
      es ~= Entry(DP[u], -1);
    }
  }
  /*
  if (p != -1) {
    // add DP[u]
  }
  */
  /*
  foreach (i; G[u]) {
    const v = A[i] ^ B[i] ^ u;
    if (v != p) {
      // calc DP[v], removing dp[v]
    }
  }
  */
  const len = cast(int)(es.length);
  auto sums = new int[len + 1];
  foreach (j; 0 .. len) {
    sums[j + 1] = sums[j] + es[j].r[0];
  }
  foreach (j; 0 .. len) {
    const v = es[j].v;
    if (v != -1) {
      DP[v][0] = (home(u) == v) ? 1 : 0;
      DP[v][0] &= (sums[j] + (sums[len] - sums[j + 1]) >= len - 1) ? 1 : 0;
      DP[v][1] = 1;
      if (len - 1 >= 1) {
        int okL = 1, okR = 1;
        if (j == 0) {
          okL &= (sums[len] - sums[2] >= len - 2) ? 1 : 0;
          okL &= es[1].r[1];
        } else {
          okL &= ((sums[j] - sums[1]) + (sums[len] - sums[j + 1]) >= len - 2) ? 1 : 0;
          okL &= es[0].r[1];
        }
        if (j == len - 1) {
          okR &= (sums[len - 2] >= len - 2) ? 1 : 0;
          okR &= es[len - 2].r[1];
        } else {
          okR &= (sums[j] + (sums[len - 1] - sums[j + 1]) >= len - 2) ? 1 : 0;
          okR &= es[len - 1].r[1];
        }
        DP[v][1] &= okL | okR;
      }
    }
  }
  foreach (i; G[u]) {
    const v = A[i] ^ B[i] ^ u;
    if (v != p) {
      DFS(v, u);
    }
  }
}

void main() {
  try {
    for (; ; ) {
      N = readInt();
      A = new int[N];
      B = new int[N];
      foreach (i; 0 .. N - 1) {
        A[i] = readInt() - 1;
        B[i] = readInt() - 1;
      }
      G = new int[][N];
      foreach (i; 0 .. N - 1) {
        G[A[i]] ~= i;
        G[B[i]] ~= i;
      }
      foreach (u; 0 .. N) {
        G[u].sort!((i0, i1) => ((A[i0] ^ B[i0] ^ u) < (A[i1] ^ B[i1] ^ u)));
      }
      debug {
        writeln("G = ", G);
      }
      
      const rt = 0;
      par = new int[N];
      dp = new Result[N];
      dfs(rt, -1);
      DP = new Result[N];
      DFS(rt, -1);
      debug {
        writeln("rt = ", rt);
        writeln("dp = ", dp);
        writeln("DP = ", DP);
      }
      foreach (u; 0 .. N) {
        // init
        Result[] rs;
        foreach (i; G[u]) {
          const v = A[i] ^ B[i] ^ u;
          /*
          if (v != par[u]) {
            // add dp[v]
          }
          */
          if (v != par[u]) {
            rs ~= dp[v];
          } else {
            rs ~= DP[u];
          }
        }
        /*
        if (u != rt) {
          // add DP[u]
        }
        */
        debug {
          writeln(u, ": ", rs);
        }
        // calc ans, rooted at u
        const len = cast(int)(rs.length);
        int ans = 1;
        if (len >= 1) {
          int okL = 1, okR = 1;
          okL &= rs[0][0];
          foreach (j; 1 .. len) {
            okL &= rs[j][0];
          }
          foreach (j; 0 .. len - 1) {
            okR &= rs[j][0];
          }
          okR &= rs[len - 1][1];
          ans &= okL | okR;
        }
        writeln(ans ? "Yes" : "No");
      }
    }
  } catch (EOFException e) {
  }
}
0