結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | naipia |
提出日時 | 2020-01-31 22:29:29 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 1,705 bytes |
コンパイル時間 | 11,365 ms |
コンパイル使用メモリ | 244,304 KB |
実行使用メモリ | 9,844 KB |
最終ジャッジ日時 | 2024-09-17 09:03:50 |
合計ジャッジ時間 | 12,641 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 4 ms
6,944 KB |
testcase_14 | AC | 4 ms
6,940 KB |
testcase_15 | AC | 4 ms
6,940 KB |
testcase_16 | AC | 4 ms
6,940 KB |
testcase_17 | AC | 4 ms
6,944 KB |
testcase_18 | AC | 11 ms
6,940 KB |
testcase_19 | AC | 12 ms
6,940 KB |
testcase_20 | AC | 17 ms
6,940 KB |
testcase_21 | AC | 27 ms
6,940 KB |
testcase_22 | AC | 46 ms
7,656 KB |
testcase_23 | AC | 52 ms
9,844 KB |
testcase_24 | AC | 46 ms
9,832 KB |
testcase_25 | AC | 51 ms
9,824 KB |
ソースコード
package main import ( "fmt" "bufio" "os" "strconv" ) //•*¨*•.¸¸♪I/O•*¨*•.¸¸♪ var ( sc = bufio.NewScanner(os.Stdin) wr = bufio.NewWriter(os.Stdout) ) func scanInt() int { sc.Scan() a,_ := strconv.Atoi(sc.Text()) return a } func scanInt64() int64 { sc.Scan() a,_ := strconv.ParseInt(sc.Text(),10,64) return a } func scanFloat64() float64 { sc.Scan() a,_ := strconv.Atoi(sc.Text()) return float64(a) } func scanInts(n int) []int { res := make([]int, n) for i := 0; i < n; i++ { res[i] = scanInt() } return res } func scanText() string { sc.Scan() return sc.Text() } func printInts(a ...int) { for i, e := range a { fmt.Fprint(wr, e) if i != len(a)-1 { fmt.Fprint(wr, " ") } } fmt.Fprintln(wr) wr.Flush() } //•*¨*•.¸¸♪Main•*¨*•.¸¸♪( -ω-)ノ ( ・ω・) func main() { sc.Split(bufio.ScanWords) // sc.Buffer(make([]byte, 10000), 100000000) n := scanInt() s := make([][]int, n) for i := 0; i < n-1; i++ { u,v := scanInt(),scanInt() s[u] = append(s[u],v) s[v] = append(s[v],u) } done := make([]bool, n) c := 0 cyc := 0 for i := 0; i < n; i++ { if done[i] { continue } queue := make([]int, 0) queue = append(queue,i) done[i] = true c++ if c > 2 { fmt.Println("Alice") return } f := true for len(queue) != 0 { next := queue[0] if !(len(s[next]) == 2 || len(s[next]) == 0) { f = false } for _, e := range s[next] { if done[e] { continue } done[e] = true queue = append(queue, e) } queue = queue[1:] } if f { cyc++ } if c == 2 && cyc != 2 { fmt.Println("Alice") return } } fmt.Println("Bob") // fmt.Println(c) }