結果
問題 | No.1621 Sequence Inversions |
ユーザー | neterukun |
提出日時 | 2021-07-22 23:18:35 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,401 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 104,696 KB |
最終ジャッジ日時 | 2024-07-17 20:07:43 |
合計ジャッジ時間 | 10,459 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
61,248 KB |
testcase_01 | AC | 38 ms
52,644 KB |
testcase_02 | AC | 65 ms
70,780 KB |
testcase_03 | AC | 56 ms
64,984 KB |
testcase_04 | AC | 301 ms
71,904 KB |
testcase_05 | AC | 36 ms
52,720 KB |
testcase_06 | AC | 63 ms
69,132 KB |
testcase_07 | AC | 106 ms
77,204 KB |
testcase_08 | AC | 1,447 ms
84,100 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
def encoding(s): n = len(s) begin, cnt = 0, 0 ans = [] if n == 0: return ans for end in range(n + 1): if end == n or s[begin] != s[end]: ans.append((s[begin], cnt)) begin, cnt = end, 1 else: cnt += 1 return ans n, k = map(int, input().split()) a = list(map(int, input().split())) MOD = 998244353 a = sorted(a) comp = encoding(a) cnts = [cnt for _, cnt in comp] dp = [0] * (k + 1) dp[0] = 1 ru_cnt = 0 for cnt in cnts: dq = [0] * (k + 1) coeff = [[0] * (cnt + 1) for _ in range(k + 1)] coeff[0][0] = 1 for i in range(ru_cnt + 1): tmp = [[0] * (cnt + 1) for _ in range(k + 1)] for use in range(cnt + 1): for used in range(cnt + 1): if use + used >= cnt + 1: break for val in range(k + 1): if val + i * use < k + 1: tmp[val + i * use][used + use] += coeff[val][used] tmp[val + i * use][used + use] %= MOD else: break coeff, tmp = tmp, coeff for count in range(k + 1): for j in range(k + 1): if count + j < k + 1: dq[count + j] += dp[count] * coeff[j][-1] dq[count + j] %= MOD ru_cnt += cnt dp, dq = dq, dp print(dp[-1] % MOD)