結果

問題 No.763 Noelちゃんと木遊び
ユーザー ccppjsrbccppjsrb
提出日時 2020-08-18 17:08:30
言語 Go
(1.22.1)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 2,105 bytes
コンパイル時間 11,514 ms
コンパイル使用メモリ 223,604 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-04-20 07:43:49
合計ジャッジ時間 13,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
27,392 KB
testcase_01 AC 13 ms
5,248 KB
testcase_02 AC 31 ms
10,112 KB
testcase_03 AC 20 ms
7,296 KB
testcase_04 AC 15 ms
5,760 KB
testcase_05 AC 20 ms
7,168 KB
testcase_06 AC 37 ms
11,776 KB
testcase_07 AC 35 ms
11,392 KB
testcase_08 AC 23 ms
7,552 KB
testcase_09 AC 14 ms
5,632 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 38 ms
11,904 KB
testcase_12 AC 35 ms
10,880 KB
testcase_13 AC 35 ms
10,752 KB
testcase_14 AC 34 ms
9,856 KB
testcase_15 AC 21 ms
7,296 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 22 ms
7,296 KB
testcase_18 AC 43 ms
11,776 KB
testcase_19 AC 37 ms
11,008 KB
testcase_20 AC 33 ms
11,008 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