結果
問題 | No.1294 マウンテン数列 |
ユーザー | ayaoni |
提出日時 | 2020-11-20 23:06:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 745 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 88,608 KB |
最終ジャッジ日時 | 2024-07-23 13:41:44 |
合計ジャッジ時間 | 3,918 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,820 KB |
testcase_01 | AC | 29 ms
10,880 KB |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,752 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 from collections import defaultdict 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 = [[defaultdict(int) 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] dp[i-1][j][max(k,A[i]-A[i-1])] += a dp[i-1][j][max(k,A[i]-A[i-1])] %= mod dp[i-1][i][max(k,A[j]-A[i-1])] += a dp[i-1][i][max(k,A[j]-A[i-1])] %= mod 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)