結果

問題 No.801 エレベーター
ユーザー kotatsugamekotatsugame
提出日時 2019-03-18 00:43:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 67,576 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-07-08 07:49:49
合計ジャッジ時間 10,882 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 8 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 578 ms
73,640 KB
testcase_14 AC 590 ms
73,856 KB
testcase_15 AC 581 ms
73,472 KB
testcase_16 AC 585 ms
73,472 KB
testcase_17 AC 588 ms
73,600 KB
testcase_18 AC 601 ms
73,600 KB
testcase_19 AC 585 ms
73,728 KB
testcase_20 AC 590 ms
73,600 KB
testcase_21 AC 581 ms
73,728 KB
testcase_22 AC 571 ms
73,728 KB
testcase_23 AC 601 ms
73,720 KB
testcase_24 AC 602 ms
73,600 KB
testcase_25 AC 601 ms
73,600 KB
testcase_26 AC 606 ms
73,600 KB
testcase_27 AC 605 ms
73,600 KB
testcase_28 AC 610 ms
73,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
long mod=1e9+7,dp[3001][3002];
int n,m,k,L[3000],R[3000];
main()
{
	cin>>n>>m>>k;
	for(int i=0;i<m;i++)cin>>L[i]>>R[i];
	for(int i=1;i<=n;i++)dp[0][i]=1;
	for(int i=0;i<k;i++)
	{
		for(int j=0;j<m;j++)
		{
			long now=dp[i][R[j]]-dp[i][L[j]-1];
			dp[i+1][L[j]]+=now;
			dp[i+1][R[j]+1]-=now;
		}
		for(int j=0;j<=n;j++)
			dp[i+1][j+1]+=dp[i+1][j]=(dp[i+1][j]%mod+mod)%mod;
		for(int j=0;j<=n;j++)
			dp[i+1][j+1]+=dp[i+1][j]=(dp[i+1][j]%mod+mod)%mod;
	}
	cout<<(dp[k][n]-dp[k][n-1]+mod)%mod<<endl;
}
0