結果

問題 No.763 Noelちゃんと木遊び
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-04-04 21:47:41
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,933 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 106,324 KB
実行使用メモリ 26,276 KB
最終ジャッジ日時 2023-09-04 00:19:37
合計ジャッジ時間 4,646 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
26,276 KB
testcase_01 AC 47 ms
5,792 KB
testcase_02 AC 113 ms
10,048 KB
testcase_03 AC 75 ms
8,944 KB
testcase_04 AC 53 ms
6,984 KB
testcase_05 AC 76 ms
10,628 KB
testcase_06 AC 139 ms
12,408 KB
testcase_07 AC 132 ms
12,348 KB
testcase_08 AC 79 ms
9,516 KB
testcase_09 AC 50 ms
6,924 KB
testcase_10 AC 21 ms
4,404 KB
testcase_11 AC 139 ms
13,132 KB
testcase_12 AC 123 ms
11,036 KB
testcase_13 AC 124 ms
12,444 KB
testcase_14 AC 109 ms
10,908 KB
testcase_15 AC 73 ms
9,040 KB
testcase_16 AC 14 ms
4,380 KB
testcase_17 AC 75 ms
8,480 KB
testcase_18 AC 140 ms
12,860 KB
testcase_19 AC 129 ms
10,940 KB
testcase_20 AC 128 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, 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[] U, V;

int[][] G;
int[][] dp;

void dfs(int u, int p) {
  foreach (v; G[u]) {
    if (v != p) {
      dfs(v, u);
    }
  }
  dp[u] = [0, 1];
  foreach (v; G[u]) {
    if (v != p) {
      dp[u][0] += max(dp[v][0], dp[v][1]);
      dp[u][1] += max(dp[v][0], dp[v][1] - 1);
    }
  }
}

void main() {
  try {
    for (; ; ) {
      N = readInt();
      U = new int[N - 1];
      V = new int[N - 1];
      foreach (i; 0 .. N - 1) {
        U[i] = readInt() - 1;
        V[i] = readInt() - 1;
      }
      
      G = new int[][N];
      foreach (i; 0 .. N - 1) {
        G[U[i]] ~= V[i];
        G[V[i]] ~= U[i];
      }
      dp = new int[][](N, 2);
      const rt = 0;
      dfs(rt, -1);
      const ans = max(dp[rt][0], dp[rt][1]);
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0