結果
問題 | No.385 カップ麺生活 |
ユーザー | aru aru |
提出日時 | 2021-01-08 21:24:20 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,285 bytes |
コンパイル時間 | 15,328 ms |
コンパイル使用メモリ | 237,944 KB |
実行使用メモリ | 812,964 KB |
最終ジャッジ日時 | 2024-11-16 09:58:45 |
合計ジャッジ時間 | 38,190 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,896 KB |
testcase_01 | AC | 11 ms
6,892 KB |
testcase_02 | AC | 11 ms
6,892 KB |
testcase_03 | AC | 12 ms
6,892 KB |
testcase_04 | AC | 140 ms
32,404 KB |
testcase_05 | AC | 11 ms
5,248 KB |
testcase_06 | AC | 598 ms
129,408 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 12 ms
5,248 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 48 ms
6,892 KB |
testcase_12 | AC | 266 ms
31,580 KB |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | WA | - |
testcase_16 | AC | 12 ms
7,020 KB |
testcase_17 | TLE | - |
testcase_18 | WA | - |
testcase_19 | AC | 71 ms
20,984 KB |
testcase_20 | WA | - |
testcase_21 | TLE | - |
testcase_22 | AC | 1,175 ms
152,432 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 13 ms
9,112 KB |
testcase_26 | AC | 12 ms
7,024 KB |
testcase_27 | AC | 571 ms
48,668 KB |
testcase_28 | WA | - |
testcase_29 | AC | 171 ms
18,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 12 ms
6,896 KB |
testcase_32 | AC | 14 ms
9,348 KB |
testcase_33 | WA | - |
testcase_34 | AC | 15 ms
9,992 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var wr = bufio.NewWriter(os.Stdout) func out(x ...interface{}) { fmt.Fprintln(wr, x...) } func getI() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getF() float64 { sc.Scan() i, e := strconv.ParseFloat(sc.Text(), 64) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getI() } return ret } func getS() 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 } // min for n entry func nmin(a ...int) int { ret := a[0] for _, e := range a { ret = min(ret, e) } return ret } // max for n entry func nmax(a ...int) int { ret := a[0] for _, e := range a { ret = max(ret, e) } return ret } 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 } func rec(m, x int) int { if m == 0 { return 0 } if prime[m] { prime[m] = false m = M x++ } if memo[m][x] != 0 { return memo[m][x] } ret := 0 for i := 0; i < N; i++ { if m >= c[i] { ret = max(ret, rec(m-c[i], x)+1) } } memo[m][x] = ret return ret } var M, N int var c []int var memo [][]int var prime map[int]bool func main() { defer wr.Flush() sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, 1000000) // this template is new version. // use getI(), getS(), getInts(), getF() a := make([]bool, 11000) for i := 2; i*i <= 10000; i++ { for j := i * 2; j <= 10000; j += i { a[j] = true } } prime = make(map[int]bool) for i := 2; i <= 10000; i++ { if a[i] == false { prime[i] = true } } M = getI() N = getI() c = getInts(N) sort.Ints(c) memo = make([][]int, 11000) for i := 0; i < 11000; i++ { memo[i] = make([]int, 1500) } ans := rec(M, 0) out(ans) }