結果
問題 | No.1368 サイクルの中に眠る門松列 |
ユーザー | c-yan |
提出日時 | 2021-01-30 19:37:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 133 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 31,092 KB |
最終ジャッジ日時 | 2024-06-28 07:19:55 |
合計ジャッジ時間 | 4,787 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
def is_kadomatsu(a): if a[0] == a[1] or a[1] == a[2] or a[0] == a[2]: return False return min(a) == a[1] or max(a) == a[1] def solve(): dp = [0] * (N + 1) for i in range(N + 1): if i != 0: dp[i] = max(dp[i], dp[i - 1]) if i <= N - 3: if is_kadomatsu(A[i:i + 3]): dp[i + 3] = dp[i] + A[i] result = dp[N] if is_kadomatsu(A[N - 1], A[0], A[1]): dp = [0] * (N + 1) dp[2] = A[N - 1] for i in range(2, N + 1): dp[i] = max(dp[i], dp[i - 1]) if i <= N - 4: if is_kadomatsu(A[i:i + 3]): dp[i + 3] = dp[i] + A[i] result = max(result, dp[N]) if is_kadomatsu(A[N - 2], A[N - 1], A[0]): dp = [0] * (N + 1) dp[1] = A[N - 2] for i in range(1, N + 1): dp[i] = max(dp[i], dp[i - 1]) if i <= N - 5: if is_kadomatsu(A[i:i + 3]): dp[i + 3] = dp[i] + A[i] result = max(result, dp[N]) return result T = int(input()) for _ in range(T): N = int(input()) A = list(map(int, input().split())) print(solve())