結果

問題 No.801 エレベーター
ユーザー GGanariGGanari
提出日時 2024-05-24 10:47:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 204,520 KB
実行使用メモリ 73,872 KB
最終ジャッジ日時 2024-05-24 10:47:30
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
9,900 KB
testcase_04 AC 5 ms
10,040 KB
testcase_05 AC 4 ms
9,904 KB
testcase_06 AC 5 ms
10,104 KB
testcase_07 AC 4 ms
10,040 KB
testcase_08 AC 5 ms
10,068 KB
testcase_09 AC 5 ms
10,208 KB
testcase_10 AC 5 ms
9,980 KB
testcase_11 AC 4 ms
9,924 KB
testcase_12 AC 5 ms
10,012 KB
testcase_13 AC 119 ms
73,820 KB
testcase_14 AC 112 ms
73,724 KB
testcase_15 AC 111 ms
73,564 KB
testcase_16 AC 111 ms
73,588 KB
testcase_17 AC 112 ms
73,636 KB
testcase_18 AC 111 ms
73,872 KB
testcase_19 AC 112 ms
73,736 KB
testcase_20 AC 111 ms
73,596 KB
testcase_21 AC 111 ms
73,768 KB
testcase_22 AC 114 ms
73,624 KB
testcase_23 AC 109 ms
73,836 KB
testcase_24 AC 109 ms
73,732 KB
testcase_25 AC 107 ms
73,732 KB
testcase_26 AC 106 ms
73,824 KB
testcase_27 AC 106 ms
73,636 KB
testcase_28 AC 110 ms
73,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 1000000001LL
#define MOD 1000000007LL
#define long long long
#define all(x) x.begin(),x.end()
using namespace std;

long dp[3001][3002];
long hap[3001];
int main()
{
	ios_base::sync_with_stdio(0); 
    cin.tie(0);

	int n,m,k;
	cin >> n >> m >> k;

	vector<pair<int,int>> ev(m);

	for(int i = 0; i<m; i++)
		cin >> ev[i].first >> ev[i].second;

	dp[0][1] = 1;	
	for(int i = 0; i<k; i++)
	{
		for(int j = 1; j<=n; j++)
			hap[j] = (hap[j-1]+dp[i][j])%MOD;
		for(int j= 0; j<m; j++)
		{
			int r = ev[j].second;
			int l = ev[j].first;
			long sum = (hap[r]-hap[l-1]+MOD)%MOD;
			dp[i+1][l]+=sum;
			dp[i+1][r+1]-=sum;
		}

		for(int j = 1; j<=n; j++)
			dp[i+1][j]+=dp[i+1][j-1];
		for(int j = 1; j<=n; j++)
			dp[i+1][j]%=MOD;
	}

	cout << dp[k][n] << endl;

	
    return 0;
}
0