結果
問題 | No.1368 サイクルの中に眠る門松列 |
ユーザー | mkawa2 |
提出日時 | 2021-10-29 12:57:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,214 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 32,260 KB |
最終ジャッジ日時 | 2024-10-07 08:31:51 |
合計ジャッジ時間 | 11,805 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1,141 ms
30,916 KB |
testcase_06 | AC | 1,145 ms
30,920 KB |
testcase_07 | AC | 238 ms
30,792 KB |
testcase_08 | WA | - |
testcase_09 | AC | 894 ms
22,428 KB |
testcase_10 | AC | 883 ms
22,300 KB |
testcase_11 | AC | 889 ms
22,428 KB |
testcase_12 | AC | 894 ms
22,396 KB |
testcase_13 | WA | - |
testcase_14 | AC | 889 ms
22,176 KB |
testcase_15 | AC | 887 ms
22,296 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 1 << 63 # md = 998244353 md = 10**9+7 def solve(): def iskado(i): if i < 2: return False if aa[i] == aa[i-1] or aa[i-1] == aa[i-2] or aa[i] == aa[i-2]: return False return max(aa[i-2:i+1]) == aa[i-1] or min(aa[i-2:i+1]) == aa[i-1] n = II() aa = LI() aa += aa ans = 0 for si in range(3): dp = [0]*(n+1) for i in range(n): dp[i+1] = dp[i] if iskado(si+i): dp[i+1] = max(dp[i+1], dp[i-2]+aa[si+i-2]) # print(si,dp) ans = max(ans, dp[-1]) print(ans) for _ in range(II()): solve()