結果

問題 No.801 エレベーター
ユーザー kanpurin002kanpurin002
提出日時 2019-03-25 03:14:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 915 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-10-05 09:24:43
合計ジャッジ時間 7,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,644 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

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