結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 4 ms
8,324 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 4 ms
8,240 KB
testcase_09 AC 4 ms
8,288 KB
testcase_10 AC 5 ms
8,228 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 140 ms
73,580 KB
testcase_17 AC 137 ms
73,592 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 139 ms
73,724 KB
testcase_22 WA -
testcase_23 AC 135 ms
73,576 KB
testcase_24 AC 132 ms
73,596 KB
testcase_25 AC 134 ms
73,572 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 136 ms
73,728 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];
			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];
			dp[i+1][j]%=MOD;
		}
	}

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

	
    return 0;
}
0