結果

問題 No.45 回転寿司
ユーザー seiichiseiichi
提出日時 2021-01-14 16:25:36
言語 Go
(1.22.1)
結果
RE  
実行時間 -
コード長 1,274 bytes
コンパイル時間 9,605 ms
コンパイル使用メモリ 220,116 KB
実行使用メモリ 102,108 KB
最終ジャッジ日時 2024-05-03 08:47:14
合計ジャッジ時間 13,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
44,744 KB
testcase_01 AC 120 ms
61,136 KB
testcase_02 AC 170 ms
83,676 KB
testcase_03 AC 216 ms
91,856 KB
testcase_04 AC 131 ms
65,236 KB
testcase_05 AC 23 ms
14,016 KB
testcase_06 AC 105 ms
54,996 KB
testcase_07 AC 175 ms
83,672 KB
testcase_08 AC 53 ms
30,408 KB
testcase_09 AC 183 ms
87,760 KB
testcase_10 AC 89 ms
46,796 KB
testcase_11 AC 50 ms
28,364 KB
testcase_12 AC 176 ms
85,720 KB
testcase_13 AC 21 ms
14,020 KB
testcase_14 AC 15 ms
9,656 KB
testcase_15 AC 100 ms
50,896 KB
testcase_16 AC 63 ms
34,512 KB
testcase_17 AC 87 ms
44,752 KB
testcase_18 AC 65 ms
36,556 KB
testcase_19 AC 154 ms
75,480 KB
testcase_20 AC 13 ms
11,704 KB
testcase_21 AC 20 ms
11,960 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 RE -
testcase_26 AC 96 ms
48,844 KB
testcase_27 AC 154 ms
75,472 KB
testcase_28 AC 102 ms
52,940 KB
testcase_29 AC 139 ms
69,332 KB
testcase_30 AC 143 ms
71,388 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 217 ms
102,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func scan() (N int, V []int) {
	fmt.Scan(&N)
	for i := 0; i < N; i++ {
		var v int
		fmt.Scan(&v)
		V = append(V, v)
	}
	return
}

func max(a, b int) int {
	if a > b {
		return a
	}
	return b
}
func main() {
	N, V := scan()
	// N := 3
	// V := []int{1, 2, 3}
	// N := 4
	// V := []int{1, 2, 3, 4}
	// N := 4
	// V := []int{5, 4, 4, 9}
	// N := 7
	// V := []int{1, 2, 9, 10, 1, 1, 4}
	// N := 1
	// V := []int{100}
	// N := 2
	// V := []int{45, 32}

	// 皿Nが与えられた場合のおいしさの最大値のマッピングリスト
	// NはN-1の結果から得られるので、全探索は必要ない
	var dp [1000][1000 * 100]bool
	var max_val [1000]int

	// N=1or2の時はシンプルなので先に埋めちゃう
	dp[0][V[0]] = true
	dp[1][V[1]] = true
	max_val[0] = V[0]
	max_val[1] = V[1]

	for i := 0; i < N; i++ {
		if i-2 >= 0 {
			for j := 0; j < len(dp[i-2]); j++ {
				if dp[i-2][j] {
					dp[i][V[i]+j] = true
					if V[i]+j > max_val[i] {
						max_val[i] = V[i] + j
					}
				}
			}
		}
		if i-3 >= 0 {
			for j := 0; j < len(dp[i-3]); j++ {
				if dp[i-3][j] {
					dp[i][V[i]+j] = true
					if V[i]+j > max_val[i] {
						max_val[i] = V[i] + j
					}
				}
			}
		}
	}
	fmt.Print(max(max_val[N-1], max_val[N-2]))
}
0