結果
問題 | No.1621 Sequence Inversions |
ユーザー | ぷら |
提出日時 | 2021-11-30 23:03:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,691 ms / 3,000 ms |
コード長 | 2,026 bytes |
コンパイル時間 | 2,217 ms |
コンパイル使用メモリ | 211,240 KB |
実行使用メモリ | 11,292 KB |
最終ジャッジ日時 | 2024-07-03 20:12:58 |
合計ジャッジ時間 | 16,618 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 17 ms
8,184 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 277 ms
8,256 KB |
testcase_09 | AC | 209 ms
9,004 KB |
testcase_10 | AC | 448 ms
11,292 KB |
testcase_11 | AC | 304 ms
8,440 KB |
testcase_12 | AC | 1,202 ms
11,252 KB |
testcase_13 | AC | 1,531 ms
11,280 KB |
testcase_14 | AC | 237 ms
6,944 KB |
testcase_15 | AC | 246 ms
6,944 KB |
testcase_16 | AC | 785 ms
6,940 KB |
testcase_17 | AC | 1,910 ms
8,576 KB |
testcase_18 | AC | 713 ms
6,940 KB |
testcase_19 | AC | 3 ms
6,940 KB |
testcase_20 | AC | 235 ms
6,944 KB |
testcase_21 | AC | 2,253 ms
9,088 KB |
testcase_22 | AC | 430 ms
6,940 KB |
testcase_23 | AC | 2,691 ms
10,112 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; constexpr int mod = 998244353; long long dp[2][102][5005]; int main() { int n,K; cin >> n >> K; vector<int>a(n); for(int i = 0; i < n; i++) { cin >> a[i]; } sort(a.rbegin(),a.rend()); dp[0][0][0] = 1; int cnt = 0; for(int i = 1; i < n; i++) { if(a[i-1] == a[i]) { cnt++; for(int j = 0; j < n; j++) { for(int k = 0; k <= K; k++) { for(int l = j; l <= i-cnt; l++) { if(k+l <= K) { dp[1][l][k+l] += dp[0][j][k]; if(dp[1][l][k+l] >= mod) { dp[1][l][k+l] -= mod; } } } } } for(int j = 0; j < n; j++) { for(int k = 0; k <= K; k++) { dp[0][j][k] = dp[1][j][k]; dp[1][j][k] = 0; } } } else { cnt = 0; for(int j = 0; j < n; j++) { for(int k = 0; k <= K; k++) { for(int l = 0; l <= i-cnt; l++) { if(k+l <= K) { dp[1][l][k+l] += dp[0][j][k]; if(dp[1][l][k+l] >= mod) { dp[1][l][k+l] -= mod; } } } } } for(int j = 0; j < n; j++) { for(int k = 0; k <= K; k++) { dp[0][j][k] = dp[1][j][k]; dp[1][j][k] = 0; } } } } int ans = 0; for(int i = 0; i < n; i++) { ans += dp[0][i][K]; if(ans >= mod) { ans -= mod; } } cout << ans << endl; }