結果

問題 No.801 エレベーター
ユーザー youluoyyouluoy
提出日時 2019-03-17 23:47:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 166,728 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-07-08 07:13:23
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 183 ms
74,368 KB
testcase_14 AC 188 ms
74,624 KB
testcase_15 AC 185 ms
74,240 KB
testcase_16 AC 187 ms
74,240 KB
testcase_17 AC 186 ms
74,368 KB
testcase_18 AC 186 ms
74,240 KB
testcase_19 AC 187 ms
74,368 KB
testcase_20 AC 186 ms
74,368 KB
testcase_21 AC 193 ms
74,368 KB
testcase_22 AC 189 ms
74,368 KB
testcase_23 AC 210 ms
74,240 KB
testcase_24 AC 212 ms
74,240 KB
testcase_25 AC 215 ms
74,368 KB
testcase_26 AC 208 ms
74,496 KB
testcase_27 AC 212 ms
74,240 KB
testcase_28 AC 221 ms
74,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define int long long
#define mk make_pair
#define pb push_back
#define pf push_front
typedef pair<int, int> pii;
#define INF (1 << 30)
#define INFL (1ll << 60ll);
#define mod 1000000007
#define se second
#define fi first

int N, M, K;
int L[3030], R[3030];
int U[3030], O[3030];
int dp[3030][3030];

signed main()
{
    cin >> N >> M >> K;
    for(int i = 0; i < M; i++){
        cin >> L[i] >> R[i];
    }
    dp[0][1] = 1;
    for(int i = 0; i < K; i++){
        for(int j = 1; j <= N; j++){
            dp[i][j] += dp[i][j - 1];
            dp[i][j] %= mod;
        }
        for(int j = 0; j < M; j++){
            int sum = dp[i][R[j]] - dp[i][L[j] - 1];
            sum %= mod;
            dp[i + 1][L[j]] += sum;
            dp[i + 1][R[j] + 1] += mod - sum;
            dp[i + 1][L[j]] %= mod;
            dp[i + 1][R[j] + 1] %= mod;
        }
        for(int j = 1; j <= N; j++){
            dp[i + 1][j] += dp[i + 1][j - 1];
            dp[i + 1][j] %= mod;
        }
    }
    cout << dp[K][N] << endl;




    return 0;
}

/*



*/
0