結果

問題 No.801 エレベーター
ユーザー GGanariGGanari
提出日時 2024-05-24 10:47:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 202,864 KB
実行使用メモリ 73,836 KB
最終ジャッジ日時 2024-12-20 19:17:20
合計ジャッジ時間 5,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 4 ms
9,828 KB
testcase_04 AC 5 ms
8,228 KB
testcase_05 AC 5 ms
8,324 KB
testcase_06 AC 4 ms
8,224 KB
testcase_07 AC 4 ms
8,196 KB
testcase_08 AC 4 ms
8,432 KB
testcase_09 AC 4 ms
8,300 KB
testcase_10 AC 4 ms
8,368 KB
testcase_11 AC 5 ms
8,360 KB
testcase_12 AC 5 ms
8,456 KB
testcase_13 AC 121 ms
73,816 KB
testcase_14 AC 129 ms
73,736 KB
testcase_15 AC 123 ms
73,572 KB
testcase_16 AC 123 ms
73,644 KB
testcase_17 AC 127 ms
73,652 KB
testcase_18 AC 124 ms
73,560 KB
testcase_19 AC 128 ms
73,704 KB
testcase_20 AC 126 ms
73,764 KB
testcase_21 AC 123 ms
73,816 KB
testcase_22 AC 128 ms
73,716 KB
testcase_23 AC 122 ms
73,648 KB
testcase_24 AC 127 ms
73,640 KB
testcase_25 AC 121 ms
73,580 KB
testcase_26 AC 124 ms
73,680 KB
testcase_27 AC 131 ms
73,520 KB
testcase_28 AC 128 ms
73,836 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