結果

問題 No.763 Noelちゃんと木遊び
ユーザー ccppjsrbccppjsrb
提出日時 2020-08-18 17:08:30
言語 Go
(1.21.3)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 2,105 bytes
コンパイル時間 14,256 ms
コンパイル使用メモリ 202,956 KB
実行使用メモリ 38,768 KB
最終ジャッジ日時 2023-08-02 08:00:01
合計ジャッジ時間 17,403 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
38,768 KB
testcase_01 AC 19 ms
7,708 KB
testcase_02 AC 44 ms
12,100 KB
testcase_03 AC 28 ms
10,004 KB
testcase_04 AC 21 ms
7,728 KB
testcase_05 AC 29 ms
9,996 KB
testcase_06 AC 50 ms
14,192 KB
testcase_07 AC 47 ms
12,160 KB
testcase_08 AC 32 ms
9,988 KB
testcase_09 AC 21 ms
7,728 KB
testcase_10 AC 8 ms
4,376 KB
testcase_11 AC 55 ms
14,208 KB
testcase_12 AC 51 ms
12,132 KB
testcase_13 AC 51 ms
12,116 KB
testcase_14 AC 45 ms
12,096 KB
testcase_15 AC 28 ms
10,004 KB
testcase_16 AC 4 ms
5,524 KB
testcase_17 AC 28 ms
10,000 KB
testcase_18 AC 58 ms
14,180 KB
testcase_19 AC 54 ms
12,124 KB
testcase_20 AC 48 ms
12,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func configure(scanner *bufio.Scanner) {
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
}
func getNextString(scanner *bufio.Scanner) string {
	scanned := scanner.Scan()
	if !scanned {
		panic("scan failed")
	}
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	extra := 0
	if os.Getenv("I") == "IronMan" {
		fp, _ = os.Open(os.Getenv("END_GAME"))
		extra = 100
	}
	scanner := bufio.NewScanner(fp)
	configure(scanner)
	writer := bufio.NewWriter(wfp)
	defer func() {
		r := recover()
		if r != nil {
			fmt.Fprintln(writer, r)
		}
		writer.Flush()
	}()
	solve(scanner, writer)
	for i := 0; i < extra; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	g := newGraph(n)
	for i := 0; i < n-1; i++ {
		u := getNextInt(scanner) - 1
		v := getNextInt(scanner) - 1
		g.appendEdge(u, v, i)
		g.appendEdge(v, u, i)
	}
	g.dfs(0, -1)
	fmt.Fprintln(writer, max(g.v[0].dp[0], g.v[0].dp[1]))
}

type vertex struct {
	dp [2]int
}
type edge struct {
	to, id int
}
type graph struct {
	v []vertex
	e [][]edge
}

func newGraph(n int) graph {
	return graph{
		v: make([]vertex, n),
		e: make([][]edge, n),
	}
}
func (g *graph) appendEdge(from, to, id int) {
	g.e[from] = append(g.e[from], edge{
		to: to,
		id: id,
	})
}
func (g *graph) dfs(i, p int) {
	g.v[i].dp[1] = 1
	for _, e := range g.e[i] {
		if e.to == p {
			continue
		}
		g.dfs(e.to, i)
		g.v[i].dp[0] += max(g.v[e.to].dp[0], g.v[e.to].dp[1])
		g.v[i].dp[1] += max(g.v[e.to].dp[0], g.v[e.to].dp[1]-1)
	}
}
func max(a, b int) int {
	if a < b {
		return b
	}
	return a
}
0