結果

問題 No.801 エレベーター
ユーザー finefine
提出日時 2019-03-17 23:06:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 171,852 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-08 01:52:51
合計ジャッジ時間 4,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

const ll MOD = 1000000007;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, m, K;
    cin >> n >> m >> K;
    vector<int> L(m), R(m);
    for (int i = 0; i < m; i++) {
        cin >> L[i] >> R[i];
        L[i]--;
    }

    vector<ll> dp(n + 1, 0);
    dp[0] = 1;
    vector<ll> sum(n + 1, 1);
    sum[0] = 0;
    for (int i = 0; i < K; i++) {
        vector<ll> ndp(n + 1, 0);
        for (int j = 0; j < m; j++) {
            ll s = (sum[R[j]] + MOD - sum[L[j]]) % MOD;
            (ndp[R[j]] += (MOD - s)) %= MOD;
            (ndp[L[j]] += s) %= MOD;
        }
        
        for (int j = 1; j < n; j++) {
            ndp[j] = (ndp[j - 1] + ndp[j]) % MOD;
        }

        dp = move(ndp);

        sum.assign(n + 1, 0);
        for (int j = 0; j < n; j++) {
            sum[j + 1] = (sum[j] + dp[j]) % MOD;
        }
    }
    cout << dp[n - 1] << endl;
    return 0;
}
0