結果
| 問題 |
No.50 おもちゃ箱
|
| コンテスト | |
| ユーザー |
aru aru
|
| 提出日時 | 2020-07-19 16:18:57 |
| 言語 | Go (1.23.4) |
| 結果 |
AC
|
| 実行時間 | 600 ms / 5,000 ms |
| コード長 | 2,258 bytes |
| コンパイル時間 | 12,148 ms |
| コンパイル使用メモリ | 233,448 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2024-12-16 05:57:20 |
| 合計ジャッジ時間 | 16,365 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 38 |
ソースコード
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
}
const inf = 100000
func main() {
sc.Split(bufio.ScanWords)
sc.Buffer([]byte{}, 1000000)
N := getInt()
a := getInts(N)
M := getInt()
b := getInts(M)
sort.Ints(a)
sort.Slice(b, func(i, j int) bool {
return b[i] > b[j]
})
ans := inf
for {
c := make([]int, M)
idx := 0
for i := 0; i < N; i++ {
for idx < M {
if c[idx]+a[i] <= b[idx] {
c[idx] += a[i]
break
} else {
idx++
}
}
if idx == M {
break
}
}
// out(c, idx, a)
if idx < M {
ans = min(ans, idx)
}
if NextPermutation(sort.IntSlice(a)) != true {
break
}
}
if ans == inf {
out(-1)
} else {
out(ans + 1)
}
}
aru aru