結果

問題 No.763 Noelちゃんと木遊び
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-04-04 21:47:41
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 1,933 bytes
コンパイル時間 1,133 ms
コンパイル使用メモリ 120,368 KB
実行使用メモリ 26,928 KB
最終ジャッジ日時 2024-06-13 04:48:58
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
26,928 KB
testcase_01 AC 48 ms
7,560 KB
testcase_02 AC 113 ms
10,108 KB
testcase_03 AC 75 ms
8,848 KB
testcase_04 AC 53 ms
6,944 KB
testcase_05 AC 72 ms
8,884 KB
testcase_06 AC 156 ms
11,728 KB
testcase_07 AC 134 ms
11,092 KB
testcase_08 AC 79 ms
10,044 KB
testcase_09 AC 51 ms
6,940 KB
testcase_10 AC 21 ms
6,944 KB
testcase_11 AC 142 ms
12,164 KB
testcase_12 AC 120 ms
10,960 KB
testcase_13 AC 124 ms
10,608 KB
testcase_14 AC 113 ms
10,476 KB
testcase_15 AC 75 ms
7,676 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 78 ms
9,804 KB
testcase_18 AC 140 ms
11,868 KB
testcase_19 AC 128 ms
10,352 KB
testcase_20 AC 129 ms
10,804 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