結果

問題 No.801 エレベーター
ユーザー pockynypockyny
提出日時 2019-03-18 04:00:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 68,864 KB
実行使用メモリ 144,256 KB
最終ジャッジ日時 2024-07-08 10:33:01
合計ジャッジ時間 10,450 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 9 ms
7,168 KB
testcase_04 AC 9 ms
7,168 KB
testcase_05 AC 9 ms
7,168 KB
testcase_06 AC 8 ms
7,296 KB
testcase_07 AC 9 ms
7,296 KB
testcase_08 AC 8 ms
7,424 KB
testcase_09 AC 9 ms
7,168 KB
testcase_10 AC 8 ms
7,168 KB
testcase_11 AC 9 ms
7,168 KB
testcase_12 AC 9 ms
7,296 KB
testcase_13 AC 557 ms
144,128 KB
testcase_14 AC 574 ms
144,256 KB
testcase_15 AC 599 ms
143,872 KB
testcase_16 AC 566 ms
143,872 KB
testcase_17 AC 572 ms
144,000 KB
testcase_18 AC 574 ms
144,000 KB
testcase_19 AC 568 ms
144,128 KB
testcase_20 AC 575 ms
144,000 KB
testcase_21 AC 573 ms
144,128 KB
testcase_22 AC 569 ms
144,256 KB
testcase_23 AC 559 ms
144,000 KB
testcase_24 AC 560 ms
144,000 KB
testcase_25 AC 569 ms
144,000 KB
testcase_26 AC 562 ms
144,000 KB
testcase_27 AC 564 ms
143,872 KB
testcase_28 AC 561 ms
144,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
long long dp[3002][3002] = {},sum[3002][3002] = {},l[3010],r[3010],mod = 1000000007;
int main(){
	int i,j,n,m,k;
	cin >> n >> m >> k;
	for(i=0;i<m;i++){
		cin >> l[i] >> r[i];
	}
	dp[0][1] = 1;
	for(i=1;i<=n;i++) sum[0][i] = 1;
	for(i=1;i<=k;i++){
		for(j=0;j<m;j++){
			(dp[i][l[j]] += (sum[i-1][r[j]] - sum[i-1][l[j]-1] + mod)%mod) %= mod;
			dp[i][r[j]+1] -= (sum[i-1][r[j]] - sum[i-1][l[j]-1] + mod)%mod;
			(dp[i][r[j]+1] += mod) %= mod;
		}
		sum[i][1] = dp[i][1];
		for(j=2;j<=n;j++){
			(dp[i][j] += dp[i][j-1]) %= mod;
			sum[i][j] = (sum[i][j-1] + dp[i][j])%mod;
		}
	}
	cout << dp[k][n] << endl;
}
0