結果

問題 No.801 エレベーター
ユーザー sumeragifseieisumeragifseiei
提出日時 2019-03-17 22:34:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 65,196 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-07-08 00:40:46
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 210 ms
73,856 KB
testcase_14 AC 210 ms
73,984 KB
testcase_15 AC 217 ms
73,728 KB
testcase_16 AC 209 ms
73,728 KB
testcase_17 AC 213 ms
73,856 KB
testcase_18 AC 210 ms
73,856 KB
testcase_19 AC 209 ms
73,728 KB
testcase_20 AC 212 ms
73,728 KB
testcase_21 AC 212 ms
73,856 KB
testcase_22 AC 209 ms
73,984 KB
testcase_23 AC 201 ms
73,856 KB
testcase_24 AC 203 ms
73,728 KB
testcase_25 AC 203 ms
73,856 KB
testcase_26 AC 202 ms
73,856 KB
testcase_27 AC 202 ms
73,728 KB
testcase_28 AC 217 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
typedef long long ll;
ll n, m, k, l[3010], r[3010], dp[3010][3010];
const ll mod = 1000000007;

int main(void)
{
	cin >> n >> m >> k;
	for (ll i = 0; i < m; i++)
	{
		cin >> l[i] >> r[i];
	}
	for (ll i = 1; i <= n; i++)
	{
		dp[0][i] = 1;
	}
	for (ll i = 1; i <= k; i++)
	{
		for (ll j = 0; j < m; j++)
		{
			(dp[i][l[j]] += (mod + dp[i - 1][r[j]] - dp[i - 1][l[j] - 1])) %= mod;
			dp[i][r[j] + 1] += mod;
			(dp[i][r[j] + 1] -= (mod + dp[i - 1][r[j]] - dp[i - 1][l[j] - 1])) %= mod;
		}
		for (ll j = 1; j < n; j++)
		{
			(dp[i][j + 1] += dp[i][j]) %= mod;
		}
		for (ll j = 1; j < n; j++)
		{
			(dp[i][j + 1] += dp[i][j]) %= mod;
		}
	}
	cout << (mod + dp[k][n] - dp[k][n - 1]) % mod << endl;
}
0