結果
問題 | No.1294 マウンテン数列 |
ユーザー | ayaoni |
提出日時 | 2020-11-20 23:12:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 905 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 76,448 KB |
最終ジャッジ日時 | 2024-07-23 13:47:02 |
合計ジャッジ時間 | 3,878 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,692 KB |
testcase_01 | AC | 29 ms
10,880 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,624 KB |
testcase_04 | AC | 29 ms
10,880 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import sys def I(): return int(sys.stdin.readline().rstrip()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) N = I() A = [0]+LI() mod = 998244353 dp = [[{} for _ in range(N+1)] for _ in range(N)] dp[N-1][N][A[N]-A[N-1]] = 1 for i in range(N-1,1,-1): for j in range(i+1,N+1): for k in dp[i][j].keys(): a = dp[i][j][k] m0 = max(k,A[i]-A[i-1]) m1 = max(k,A[j]-A[i-1]) if m0 in dp[i-1][j].keys(): dp[i-1][j][m0] += a dp[i-1][j][m0] %= mod else: dp[i-1][j][m0] = a if m1 in dp[i-1][i].keys(): dp[i-1][i][m1] += a dp[i-1][i][m1] %= mod else: dp[i-1][i][m1] = a ans = 0 for j in range(2,N+1): for k in dp[1][j].keys(): ans += dp[1][j][k]*k ans %= mod print((2*ans) % mod)