結果

問題 No.1621 Sequence Inversions
ユーザー dekomori_sanaedekomori_sanae
提出日時 2022-01-28 11:32:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,534 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 92,272 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-06-08 18:09:01
合計ジャッジ時間 2,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 5 ms
7,040 KB
testcase_11 WA -
testcase_12 AC 9 ms
7,040 KB
testcase_13 AC 13 ms
6,912 KB
testcase_14 WA -
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 29 ms
5,504 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 33 ms
5,760 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 40 ms
6,144 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <numeric>
#include <functional>
using namespace std;
typedef long long ll;
typedef vector<ll> vl;
typedef vector<vector<ll>> vvl;
typedef pair<ll, ll> P;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define exrep(i, a, b) for(ll i = a; i <= b; i++)
#define out(x) cout << x << endl
#define exout(x) printf("%.10f\n", x)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back
#define re0 return 0
const ll mod = 998244353;
const ll INF = 1e16;
  
int main() {
    ll n, K;
    cin >> n >> K;

    vl a(n+1);
    exrep(i, 1, n) {
        cin >> a[i];
    }
    sort(all(a));

    vvl dp(n+1, vl(K+1));  // dp[i][j] : i個挿入して、転倒数がjとなる場合の数
    dp[1][0] = 1;
    ll x =  0;  // いままで現れた、いまから挿入する数の個数
    exrep(i, 1, n-1) {
        exrep(j, 0, K) {
            if(a[i] < a[i+1]) {
                x = 0;
            }
            else if(a[i] == a[i+1]) {
                x++;
            }
            exrep(k, 0, i - x) {
                if(j + k <= K) {
                    dp[i+1][j + k] += dp[i][j];
                    dp[i+1][j + k] %= mod;
                }
            }
        }
    }

    out(dp[n][K]);
    re0;
}
0