結果

問題 No.801 エレベーター
ユーザー kanpurin002
提出日時 2019-03-25 03:14:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 915 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-10-05 09:24:43
合計ジャッジ時間 7,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other TLE * 2 -- * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <utility>
using ll = long long;
#define MOD 1000000007
using namespace std;

int main(){
    int N, M, K;
    cin >> N >> M >> K;
    vector<int> L(M), R(M);
    vector<vector<int>> dp(K+1,vector<int>(N+1,0));
    dp[0][1] = 1;
    for(int i = 0; i < M; i++)
    {
        cin >> L[i] >> R[i];
    }
    for(int count = 0; count < K; count++)
    {
        for(int height = 1; height < N+1; height++)
        {
            for(int i = 0; i < M; i++)
            {
                if (L[i] <= height && R[i] >= height) {
                    for(int j = L[i]; j <= R[i]; j++)
                    {
                        dp[count + 1][j] += dp[count][height] % MOD;
                        dp[count + 1][j] %= MOD;
                    }
                }
            }
        }
    }
    cout << dp[K][N] << endl;
    return 0;
}
0