結果
問題 | No.1701 half price |
ユーザー | 小野寺健 |
提出日時 | 2021-12-20 12:48:45 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 1,073 ms / 3,000 ms |
コード長 | 1,197 bytes |
コンパイル時間 | 11,976 ms |
コンパイル使用メモリ | 230,384 KB |
実行使用メモリ | 340,176 KB |
最終ジャッジ日時 | 2024-09-15 15:17:37 |
合計ジャッジ時間 | 14,873 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 621 ms
121,216 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 5 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1,073 ms
340,176 KB |
ソースコード
package main import ( "fmt" "bufio" "os" "strings" "strconv" ) type Cell struct { n int a []int } func newCell(n int, a []int) *Cell { cp := new(Cell) cp.n = n if len(a) == 0 { cp.a = a } else { cp.a = make([]int, len(a)) copy(cp.a, a) } return cp } func toString(a []int) string { var str_build strings.Builder for i := 0; i < len(a); i++ { str_build.WriteString(strconv.Itoa(a[i]) + ",") } return str_build.String() } func main() { r := bufio.NewReader(os.Stdin) w := bufio.NewWriter(os.Stdout) defer w.Flush() var N, W int fmt.Fscan(r, &N, &W) a := make([]int, N) for i := 0; i < N; i++ { fmt.Fscan(r, &a[i]) } w0 := make([]*Cell, 1) w0[0] = newCell(0, make([]int, 0)) for i := 0; i < N; i++ { w1 := make([]*Cell, 0) for _, wv := range w0 { w, v := wv.n, wv.a w1 = append(w1, newCell(w, v)) if w + a[i] / 2 <= W { w1 = append(w1, newCell(w + a[i] / 2, append(v, i))) } if w + a[i] <= W { w1 = append(w1, newCell(w + a[i], append(v, i))) } } w0 = w1 } if W == 0 { w0 = w0[1:] } m := make(map[string]bool) for _, xy := range w0 { if xy.n == W { m[toString(xy.a)] = true } } fmt.Fprintln(w, len(m)) }