結果

問題 No.801 エレベーター
ユーザー yoshig0731yoshig0731
提出日時 2020-04-29 15:30:26
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 4,620 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 86,184 KB
実行使用メモリ 74,124 KB
最終ジャッジ日時 2023-08-19 03:30:08
合計ジャッジ時間 5,611 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
74,064 KB
testcase_01 AC 57 ms
73,920 KB
testcase_02 AC 56 ms
73,916 KB
testcase_03 AC 57 ms
74,036 KB
testcase_04 AC 56 ms
74,076 KB
testcase_05 AC 57 ms
74,048 KB
testcase_06 AC 56 ms
73,916 KB
testcase_07 AC 56 ms
73,956 KB
testcase_08 AC 57 ms
74,032 KB
testcase_09 AC 56 ms
73,916 KB
testcase_10 AC 57 ms
73,920 KB
testcase_11 AC 57 ms
73,968 KB
testcase_12 AC 56 ms
74,036 KB
testcase_13 AC 129 ms
73,916 KB
testcase_14 AC 128 ms
74,028 KB
testcase_15 AC 130 ms
73,932 KB
testcase_16 AC 128 ms
74,096 KB
testcase_17 AC 129 ms
73,916 KB
testcase_18 AC 128 ms
74,032 KB
testcase_19 AC 128 ms
73,928 KB
testcase_20 AC 129 ms
74,124 KB
testcase_21 AC 129 ms
73,916 KB
testcase_22 AC 129 ms
73,996 KB
testcase_23 AC 115 ms
74,012 KB
testcase_24 AC 114 ms
73,980 KB
testcase_25 AC 115 ms
73,940 KB
testcase_26 AC 115 ms
73,940 KB
testcase_27 AC 115 ms
73,976 KB
testcase_28 AC 119 ms
73,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdint>
#include <cstring>
#include <functional>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>

using namespace std;
#define REP(i, n) for (int i = 0; i < n; i++)
#define FOR(i, s, t) for (int i = s; i < t; i++)
#define ALL(obj) obj.begin(), obj.end()

const int iINF = 1e9;
const long long llINF = 1e18;
const int MOD = 1e9 + 7;
template <class T>
inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return 1;
    }
    return 0;
}

template <int MOD>
struct ModInt {
    long long val;
    constexpr ModInt(long long v = 0) noexcept : val(v % MOD) {
        if (val < 0) val += MOD;
    }
    constexpr int getmod() { return MOD; }
    constexpr ModInt operator-() const noexcept { return val ? MOD - val : 0; }
    constexpr ModInt operator+(const ModInt& r) const noexcept { return ModInt(*this) += r; }
    constexpr ModInt operator-(const ModInt& r) const noexcept { return ModInt(*this) -= r; }
    constexpr ModInt operator*(const ModInt& r) const noexcept { return ModInt(*this) *= r; }
    constexpr ModInt operator/(const ModInt& r) const noexcept { return ModInt(*this) /= r; }
    constexpr ModInt& operator+=(const ModInt& r) noexcept {
        val += r.val;
        if (val >= MOD) val -= MOD;
        return *this;
    }
    constexpr ModInt& operator-=(const ModInt& r) noexcept {
        val -= r.val;
        if (val < 0) val += MOD;
        return *this;
    }
    constexpr ModInt& operator*=(const ModInt& r) noexcept {
        val = val * r.val % MOD;
        return *this;
    }
    constexpr ModInt& operator/=(const ModInt& r) noexcept {
        long long a = r.val, b = MOD, u = 1, v = 0;
        while (b) {
            long long t = a / b;
            a -= t * b;
            swap(a, b);
            u -= t * v;
            swap(u, v);
        }
        val = val * u % MOD;
        if (val < 0) val += MOD;
        return *this;
    }
    constexpr bool operator==(const ModInt& r) const noexcept { return this->val == r.val; }
    constexpr bool operator!=(const ModInt& r) const noexcept { return this->val != r.val; }
    friend constexpr ostream& operator<<(ostream& os, const ModInt<MOD>& x) noexcept { return os << x.val; }

    friend constexpr istream& operator>>(istream& is, ModInt<MOD>& x) noexcept { return is >> x.val; }
    friend constexpr ModInt<MOD> modpow(const ModInt<MOD>& a, long long n) noexcept {
        if (n == 0) return 1;
        auto t = modpow(a, n / 2);
        t = t * t;
        if (n & 1) t = t * a;
        return t;
    }
};

using mint = ModInt<MOD>;

long long modPow(long long x, long long n, long long mod) {
    long long res = 1;
    while (n > 0) {
        if (n & 1) res = res * x % mod;
        x = x * x % mod;
        n >>= 1;
    }
    return res;
}

long long extGCD(long long a, long long b, long long& x, long long& y) {
    if (b == 0) {
        x = 1;
        y = 0;
        return a;
    }

    long long d = extGCD(b, a % b, y, x);
    y -= a / b * x;
    return d;
}

long long gcd(long long a, long long b) {
    if (b == 0) {
        return a;
    } else {
        return gcd(b, a % b);
    }
}

long long lcm(long long a, long long b) { return a / gcd(a, b) * b; }

template <typename T>
map<T, int> compress(vector<T> x) {
    map<T, int> res;
    sort(x.begin(), x.end());
    x.erase(unique(x.begin(), x.end()), x.end());
    for (int i = 0; i < x.size(); i++) {
        res[x[i]] = i;
    }

    return res;
}

template <typename T>
int former(const vector<T>& v, T x) {
    return upper_bound(v.begin(), v.end(), x) - v.begin() - 1;
}

template <typename T>
int latter(const vector<T>& v, T x) {
    return lower_bound(v.begin(), v.end(), x) - v.begin();
}

template <typename T>
using Vec = vector<T>;
template <typename T>
using VVec = vector<vector<T>>;
using LL = long long;

VVec<mint> dp(3010, Vec<mint> (3010, 0));
int main() {
    int N, M, K; cin >> N >> M >> K;
    Vec<int> L(M), R(M);
    REP(i, M) cin >> L[i] >> R[i], --L[i];
    dp[0][0] = 1;
    REP(k, K) {
        Vec<mint> sum(N + 1, 0);
        REP(i, N) sum[i + 1] = (sum[i] + dp[k][i]);
        REP(i, M) {
            mint add = (sum[R[i]] - sum[L[i]]);
            dp[k + 1][L[i]] += add;
            dp[k + 1][R[i]] -= add;
        }
        REP(i, N) {
            dp[k + 1][i + 1] += dp[k + 1][i];
        }
    }

    cout << dp[K][N - 1] << endl;
    return 0;
}
0