結果

問題 No.567 コンプリート
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-02 23:49:07
言語 Go
(1.22.1)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 2,067 bytes
コンパイル時間 13,090 ms
コンパイル使用メモリ 237,712 KB
実行使用メモリ 28,640 KB
最終ジャッジ日時 2024-05-03 16:21:44
合計ジャッジ時間 12,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 49 ms
28,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func getScanner(fp *os.File) *bufio.Scanner {
	scanner := bufio.NewScanner(fp)
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
	return scanner
}
func getNextString(scanner *bufio.Scanner) string {
	scanner.Scan()
	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 getNextUint64(scanner *bufio.Scanner) uint64 {
	i, _ := strconv.ParseUint(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
	cnt := 0
	if os.Getenv("MASPY") == "ますピ" {
		fp, _ = os.Open(os.Getenv("BEET_THE_HARMONY_OF_PERFECT"))
		cnt = 4
	}
	if os.Getenv("MASPYPY") == "ますピッピ" {
		wfp, _ = os.Create(os.Getenv("NGTKANA_IS_GENIUS10"))
	}
	scanner := getScanner(fp)
	writer := bufio.NewWriter(wfp)
	solve(scanner, writer)
	for i := 0; i < cnt; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
	writer.Flush()
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	bits := 1 << 6
	dp := makeGrid(n+1, bits)

	dp[0][0] = 1.0
	for i := 0; i < n; i++ {
		for j := 0; j < bits; j++ {
			for k := 0; k < 6; k++ {
				dp[i+1][j|1<<uint(k)] += dp[i][j] / 6.0
				if j|1<<uint(k) == bits-1 && compare(dp[i+1][j|1<<uint(k)], 1.0) == 0 {
					fmt.Fprintln(writer, dp[i+1][j|1<<uint(k)])
					return
				}
			}
		}
	}
	fmt.Fprintln(writer, dp[n][bits-1])
}

func compare(a, b float64) int {
	eps := 1e-9
	if a > b+eps {
		return 1
	}
	if b > a+eps {
		return -1
	}
	return 0
}

func makeGrid(h, w int) [][]float64 {
	index := make([][]float64, h, h)
	data := make([]float64, h*w, h*w)
	for i := 0; i < h; i++ {
		index[i] = data[i*w : (i+1)*w]
	}
	return index
}
0