結果

問題 No.133 カードゲーム
ユーザー aru aru
提出日時 2020-08-14 16:23:39
言語 Go
(1.23.4)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 2,231 bytes
コンパイル時間 10,756 ms
コンパイル使用メモリ 233,540 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 12:02:15
合計ジャッジ時間 11,641 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

package main
import (
"bufio"
"fmt"
"os"
"sort"
"strconv"
)
func out(x ...interface{}) {
fmt.Println(x...)
}
var sc = bufio.NewScanner(os.Stdin)
func getInt() int {
sc.Scan()
i, e := strconv.Atoi(sc.Text())
if e != nil {
panic(e)
}
return i
}
func getInts(N int) []int {
ret := make([]int, N)
for i := 0; i < N; i++ {
ret[i] = getInt()
}
return ret
}
func getString() string {
sc.Scan()
return sc.Text()
}
// min, max, asub, abs
func max(a, b int) int {
if a > b {
return a
}
return b
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
func asub(a, b int) int {
if a > b {
return a - b
}
return b - a
}
func abs(a int) int {
if a >= 0 {
return a
}
return -a
}
func lowerBound(a []int, x int) int {
idx := sort.Search(len(a), func(i int) bool {
return a[i] >= x
})
return idx
}
func upperBound(a []int, x int) int {
idx := sort.Search(len(a), func(i int) bool {
return a[i] > x
})
return idx
}
// NextPermutation generates the next permutation of the
// sortable collection x in lexical order. It returns false
// if the permutations are exhausted.
//
// Knuth, Donald (2011), "Section 7.2.1.2: Generating All Permutations",
// The Art of Computer Programming, volume 4A.
// ※NextPermutation
func NextPermutation(x sort.Interface) bool {
n := x.Len() - 1
if n < 1 {
return false
}
j := n - 1
for ; !x.Less(j, j+1); j-- {
if j == 0 {
return false
}
}
l := n
for !x.Less(j, l) {
l--
}
x.Swap(j, l)
for k, l := j+1, n; k < l; {
x.Swap(k, l)
k++
l--
}
return true
}
func main() {
sc.Split(bufio.ScanWords)
N := getInt()
a := getInts(N)
b := getInts(N)
n := make([]int, N)
m := make([]int, N)
for i := 0; i < N; i++ {
n[i] = i
}
tot := 0
cnt := 0
for {
for i := 0; i < N; i++ {
m[i] = i
}
for {
win := 0
lose := 0
for i := 0; i < N; i++ {
if a[n[i]] > b[m[i]] {
win++
} else if a[n[i]] < b[m[i]] {
lose++
}
}
if win > lose {
cnt++
}
tot++
if !NextPermutation(sort.IntSlice(m)) {
break
}
}
if !NextPermutation(sort.IntSlice(n)) {
break
}
}
// out(cnt, tot)
out(float64(cnt) / float64(tot))
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0