Submission #6474168


Source Code Expand

Copy
#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i))
using namespace std;
template <typename X, typename T> auto make_vectors(X x, T a) { return vector<T>(x, a); }
template <typename X, typename Y, typename Z, typename... Zs> auto make_vectors(X x, Y y, Z z, Zs... zs) { auto cont = make_vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); }
template <int32_t MOD>
struct mint {
int32_t value;
mint() : value() {}
mint(int64_t value_) : value(value_ < 0 ? value_ % MOD + MOD : value_ >= MOD ? value_ % MOD : value_) {}
inline mint<MOD> operator + (mint<MOD> other) const { int32_t c = this->value + other.value; return mint<MOD>(c >= MOD ? c - MOD : c); }
inline mint<MOD> operator - (mint<MOD> other) const { int32_t c = this->value - other.value; return mint<MOD>(c < 0 ? c + MOD : c); }
inline mint<MOD> operator * (mint<MOD> other) const { int32_t c = (int64_t)this->value * other.value % MOD; return mint<MOD>(c < 0 ? c + MOD : c); }
inline mint<MOD> & operator += (mint<MOD> other) { this->value += other.value; if (this->value >= MOD) this->value -= MOD; return *this; }
inline mint<MOD> & operator -= (mint<MOD> other) { this->value -= other.value; if (this->value < 0) this->value += MOD; return *this; }
inline mint<MOD> & operator *= (mint<MOD> other) { this->value = (int64_t)this->value * other.value % MOD; if (this->value < 0) this->value += MOD; return *this; }
};
template <int32_t MOD> mint<MOD> operator * (int64_t value, mint<MOD> n) { return mint<MOD>(value) * n; }
template <int32_t MOD> std::ostream & operator << (std::ostream & out, mint<MOD> n) { return out << n.value; }
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i))
using namespace std;
template <typename X, typename T> auto make_vectors(X x, T a) { return vector<T>(x, a); }
template <typename X, typename Y, typename Z, typename... Zs> auto make_vectors(X x, Y y, Z z, Zs... zs) { auto cont = make_vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); }

template <int32_t MOD>
struct mint {
    int32_t value;
    mint() : value() {}
    mint(int64_t value_) : value(value_ < 0 ? value_ % MOD + MOD : value_ >= MOD ? value_ % MOD : value_) {}
    inline mint<MOD> operator + (mint<MOD> other) const { int32_t c = this->value + other.value; return mint<MOD>(c >= MOD ? c - MOD : c); }
    inline mint<MOD> operator - (mint<MOD> other) const { int32_t c = this->value - other.value; return mint<MOD>(c <    0 ? c + MOD : c); }
    inline mint<MOD> operator * (mint<MOD> other) const { int32_t c = (int64_t)this->value * other.value % MOD; return mint<MOD>(c < 0 ? c + MOD : c); }
    inline mint<MOD> & operator += (mint<MOD> other) { this->value += other.value; if (this->value >= MOD) this->value -= MOD; return *this; }
    inline mint<MOD> & operator -= (mint<MOD> other) { this->value -= other.value; if (this->value <    0) this->value += MOD; return *this; }
    inline mint<MOD> & operator *= (mint<MOD> other) { this->value = (int64_t)this->value * other.value % MOD; if (this->value < 0) this->value += MOD; return *this; }
};
template <int32_t MOD> mint<MOD> operator * (int64_t value, mint<MOD> n) { return mint<MOD>(value) * n; }
template <int32_t MOD> std::ostream & operator << (std::ostream & out, mint<MOD> n) { return out << n.value; }


constexpr int MOD = 1e9 + 7;
mint<MOD> solve(int n, int k) {
    auto dp = make_vectors(n + 1, n + 1, k + 1, mint<MOD>());
    dp[0][0][0] = 1;
    REP (i, n) {
        REP (inout, n + 1) {
            REP (j, k + 1) if (j % 2 == 0 and j + 2 * inout <= k) {
                dp[i + 1][inout][j + 2 * inout] += dp[i][inout][j];  // i -> i
                dp[i + 1][inout][j + 2 * inout] += inout * dp[i][inout][j];  // l -> i -> r
                dp[i + 1][inout][j + 2 * inout] += inout * dp[i][inout][j];  // r -> i -> l
                if (inout - 1 >= 0) dp[i + 1][inout - 1][j + 2 * inout] += inout * inout * dp[i][inout][j];  // l -> i -> l'
                if (inout < n) dp[i + 1][inout + 1][j + 2 * inout] += dp[i][inout][j];  // r -> i -> r'
            }
        }
    }
    return dp[n][0][k];
}

int main() {
    int n, k; cin >> n >> k;
    cout << solve(n, k) << endl;
    return 0;
}

Submission Info

Submission Time
Task F - Permutation Oddness
User kimiyuki
Language C++14 (GCC 5.4.1)
Score 600
Code Size 2581 Byte
Status AC
Exec Time 83 ms
Memory 26240 KB

Judge Result

Set Name All Sample
Score / Max Score 600 / 600 0 / 0
Status
AC × 50
AC × 2
Set Name Test Cases
All sample_01, sample_02, testcase_0, testcase_1, testcase_10, testcase_11, testcase_12, testcase_13, testcase_14, testcase_15, testcase_16, testcase_17, testcase_18, testcase_19, testcase_2, testcase_20, testcase_21, testcase_22, testcase_23, testcase_24, testcase_25, testcase_26, testcase_27, testcase_28, testcase_29, testcase_3, testcase_30, testcase_31, testcase_32, testcase_33, testcase_34, testcase_35, testcase_36, testcase_37, testcase_38, testcase_39, testcase_4, testcase_40, testcase_41, testcase_42, testcase_43, testcase_44, testcase_45, testcase_46, testcase_47, testcase_5, testcase_6, testcase_7, testcase_8, testcase_9
Sample sample_01, sample_02
Case Name Status Exec Time Memory
sample_01 AC 1 ms 256 KB
sample_02 AC 1 ms 384 KB
testcase_0 AC 10 ms 3200 KB
testcase_1 AC 4 ms 1152 KB
testcase_10 AC 1 ms 256 KB
testcase_11 AC 13 ms 3840 KB
testcase_12 AC 1 ms 256 KB
testcase_13 AC 2 ms 512 KB
testcase_14 AC 24 ms 7424 KB
testcase_15 AC 15 ms 4608 KB
testcase_16 AC 1 ms 256 KB
testcase_17 AC 3 ms 896 KB
testcase_18 AC 15 ms 4608 KB
testcase_19 AC 2 ms 384 KB
testcase_2 AC 1 ms 256 KB
testcase_20 AC 1 ms 256 KB
testcase_21 AC 6 ms 1792 KB
testcase_22 AC 1 ms 256 KB
testcase_23 AC 3 ms 896 KB
testcase_24 AC 1 ms 256 KB
testcase_25 AC 6 ms 1664 KB
testcase_26 AC 6 ms 1664 KB
testcase_27 AC 3 ms 896 KB
testcase_28 AC 2 ms 384 KB
testcase_29 AC 3 ms 768 KB
testcase_3 AC 1 ms 256 KB
testcase_30 AC 1 ms 256 KB
testcase_31 AC 9 ms 2816 KB
testcase_32 AC 1 ms 256 KB
testcase_33 AC 1 ms 384 KB
testcase_34 AC 1 ms 256 KB
testcase_35 AC 1 ms 256 KB
testcase_36 AC 1 ms 256 KB
testcase_37 AC 1 ms 256 KB
testcase_38 AC 1 ms 256 KB
testcase_39 AC 1 ms 256 KB
testcase_4 AC 18 ms 5504 KB
testcase_40 AC 1 ms 256 KB
testcase_41 AC 41 ms 12288 KB
testcase_42 AC 41 ms 12288 KB
testcase_43 AC 1 ms 384 KB
testcase_44 AC 1 ms 384 KB
testcase_45 AC 44 ms 13312 KB
testcase_46 AC 44 ms 13312 KB
testcase_47 AC 83 ms 26240 KB
testcase_5 AC 8 ms 2432 KB
testcase_6 AC 1 ms 256 KB
testcase_7 AC 2 ms 384 KB
testcase_8 AC 1 ms 256 KB
testcase_9 AC 70 ms 22016 KB


2025-04-05 (Sat)
09:46:39 +00:00